Skip to content

Instantly share code, notes, and snippets.

@Deri-Kurniawan
Created August 26, 2023 10:48
Show Gist options
  • Save Deri-Kurniawan/5a6fc2036aa04f8e0bf804b6b8d990a4 to your computer and use it in GitHub Desktop.
Save Deri-Kurniawan/5a6fc2036aa04f8e0bf804b6b8d990a4 to your computer and use it in GitHub Desktop.
Configuration for Deploying Express JS Application on Vercel
{
"version": 2,
"builds": [
{
"src": "src/server.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "src/server.js"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment