chetantiwari commited on
Commit
5deb8d1
·
1 Parent(s): dab37cd
Files changed (1) hide show
  1. vercel.json +6 -6
vercel.json CHANGED
@@ -1,14 +1,14 @@
1
  {
2
  "version": 2,
3
  "functions": {
4
- "api/index.py": {
5
- "runtime": "@vercel/python"
6
  }
7
  },
8
- "routes": [
9
  {
10
- "src": "/(.*)",
11
- "dest": "/api/index.py"
12
  }
13
  ]
14
- }
 
1
  {
2
  "version": 2,
3
  "functions": {
4
+ "app/main.py": {
5
+ "runtime": "python3.9"
6
  }
7
  },
8
+ "rewrites": [
9
  {
10
+ "source": "/(.*)",
11
+ "destination": "/app/main.py"
12
  }
13
  ]
14
+ }