Vercel
Deploy supported Better Fullstack web and server projects to Vercel.
Open documentation actions
Vercel is a strong fit for supported React, Nuxt, SvelteKit, and Solid web apps, especially when the frontend is the primary deployable service.
Create with Vercel config
npm create better-fullstack@latest my-app -- \
--frontend next \
--backend self \
--runtime none \
--database postgres \
--orm drizzle \
--web-deploy vercelFor separate server apps, use --server-deploy vercel when compatibility allows it.
npm create better-fullstack@latest my-api -- \
--frontend none \
--backend hono \
--runtime node \
--database postgres \
--orm drizzle \
--server-deploy vercelGenerated files
Better Fullstack emits Vercel config for supported frontend and server templates. The generated project still needs production environment variables configured in Vercel before the first production deployment.
Notes
- Fullstack frontends usually deploy through the web app rather than a separate server target.
- Redwood and Fresh have their own deployment conventions and are intentionally constrained.
- Auth providers often require the final Vercel URL or custom domain in callback settings.