Best way to structure Next.js frontend & APIs for movers app on Vercel

When building a packers and movers app on Vercel, should I put the frontend and backend together in one Next.js project, or should I separate them into two projects (frontend on Vercel and backend somewhere else)?

It makes much more sense to keep your front and backend together in a single repository and in a single v0 project. v0 will perform much better working on the backend code if the front end is available to read into context. Code can then be deployed wherever it fits best.

1 Like