Skip to content

Commit

Permalink
Update vercel.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dave9123 authored Sep 1, 2024
1 parent f650d16 commit 2f1bb68
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"version": 2,
"builds": [{
"src": "index.js",
"builds": [
{
"src": "./index.js",
"use": "@vercel/node"
}],
"routes": [{
"src": "/(.*)",
}
],
"routes": [
{
"handle": "filesystem"
},
{
"src": "/.*",
"dest": "index.js"
}]
}
}
]
}

0 comments on commit 2f1bb68

Please sign in to comment.