Hi @matsilva06-gmailcom! It’s possible to use Vercel for the client-side and server-side (i.e. API) layers of the application. The database would need to either be Vercel Postgres or be hosted elsewhere. The available database integration options can make connection to an external database easier if you choose that route.
People do sometimes run into some trouble deploying Nest projects in serverless environments. There are some resources available to help you get it configured. Quite a few people have been kind enough to share what worked for them:
- Documentation | NestJS - A progressive Node.js framework
- Deploy Nest.js on Vercel. When should you consider deploying… | by Yosif Yosifov | Medium
- Deploying a NestJS Application on Vercel with a PostgreSQL Database - DEV Community
- How to Deploy a Nest.JS with TypeScript app on Vercel | by Kristijan Knezevic | Medium
- Deploying Nest.js Existing App To Vercel using Git | by Johnson Okoli | Medium
Alternatively, you could use a traditional server for the server-side layer of your app.