diff options
Diffstat (limited to 'vercel.json')
| -rw-r--r-- | vercel.json | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/vercel.json b/vercel.json index 8fdab13..d715dfc 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,14 @@ { - "rewrites": [ - { "source": "/(.*)", "destination": "/app" } - ] + "builds":[ + { + "src":"app.py", + "use":"@vercel/python" + } + ], + "routes":[ + { + "src":"/(.*)", + "dest":"app.py" + } + ] } |
