Deploy Your Project
Starter-ready deployment guides.
Deploy to Vercel with zero config:
vercel
Works out of the box with Netlify.
Containerize your application:
FROM node:18
WORKDIR /app
COPY . .
RUN npm install && npm run build
CMD ["npm", "start"]