Skip to content

Instantly share code, notes, and snippets.

@borispoehland
Created September 1, 2021 07:41

Revisions

  1. borispoehland created this gist Sep 1, 2021.
    15 changes: 15 additions & 0 deletions vercel_deploy_node.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    {
    "version": 2,
    "builds": [
    {
    "src": "src/app.js",
    "use": "@vercel/node"
    }
    ],
    "routes": [
    {
    "src": "/(.*)",
    "dest": "src/app.js"
    }
    ]
    }