my file structure
sh
api
├── src
│ └── index.ts
├── .env
├── package.json
├── tsconfig.json
└── vercel.json
client
├── src
│ ├── App.tsx
│ └── main.tsx
├── .env
├── package.json
└── tsconfig.json
delpoy node express back-end to vercel
- upload your code to github
- go to vercel dashboard
Framework Preset
chooseother
Root Directory
chooseapi
- add environment variables
- ENV_DATA
- PORT
- Deploy
add vercel.json
to your node app (this is vital)
- vercel host support
.js
and.ts
files, so we could just use it - also use full file name, use
src/index.ts
instead ofsrc
json
{
"version": 2,
"builds": [{ "src": "src/index.ts", "use": "@vercel/node" }],
"rewrites": [{ "source": "/(.*)", "destination": "src/index.ts" }]
}
delpoy vite react front-end to vercel
- upload your code to github
- go to vercel dashboard
Framework Preset
choosevite
Root Directory
chooseclient
- add environment variables
- VITE_API_URL
- Deploy