Skip to content

Instantly share code, notes, and snippets.

@SH20RAJ
Created April 25, 2024 15:34
Show Gist options
  • Save SH20RAJ/45b99c9e618a724c62a0e47ea443389e to your computer and use it in GitHub Desktop.
Save SH20RAJ/45b99c9e618a724c62a0e47ea443389e to your computer and use it in GitHub Desktop.
Vercel.json to deploy express app on vercel
{
"version": 2,
"builds": [
{
"src": "bot.js",
"use": "@vercel/node"
}
],
"routes" : [
{
"src": "/(.*)",
"dest": "bot.js"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment