Ufoptg commited on
Commit
51ce92b
1 Parent(s): 4c3ce10

Create vercel.json

Browse files
Files changed (1) hide show
  1. vercel.json +15 -0
vercel.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": 2,
3
+ "builds": [
4
+ {
5
+ "src": "main.py",
6
+ "use": "@vercel/python"
7
+ }
8
+ ],
9
+ "routes": [
10
+ {
11
+ "src": "/(.*)",
12
+ "dest": "main.py"
13
+ }
14
+ ]
15
+ }