diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-05-07 16:23:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-07 16:23:00 -0700 |
| commit | 2c5d638e33a4dff794184fe7ddfa53b7eb680e09 (patch) | |
| tree | 5ad7d053fc115e0e6c0360d50f855e9590a11480 /vercel.json | |
| parent | ac01a299084ce21a3938f8b43f07d18891ea8d23 (diff) | |
Update vercel.json
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" + } + ] } |
