Pyae Sone Automation commited on
Commit ·
c945cda
1
Parent(s): bce278c
chore: persist vercel project configuration
Browse files- .gitignore +1 -0
- vercel.json +13 -0
.gitignore
CHANGED
|
@@ -48,3 +48,4 @@ backend/**/__pycache__/
|
|
| 48 |
backend/ai_router/__pycache__/
|
| 49 |
.env.keys
|
| 50 |
backend/.env.keys
|
|
|
|
|
|
| 48 |
backend/ai_router/__pycache__/
|
| 49 |
.env.keys
|
| 50 |
backend/.env.keys
|
| 51 |
+
.vercel
|
vercel.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"experimentalServices": {
|
| 3 |
+
"frontend": {
|
| 4 |
+
"entrypoint": "frontend",
|
| 5 |
+
"routePrefix": "/",
|
| 6 |
+
"framework": "nextjs"
|
| 7 |
+
},
|
| 8 |
+
"backend": {
|
| 9 |
+
"entrypoint": "backend",
|
| 10 |
+
"routePrefix": "/_/backend"
|
| 11 |
+
}
|
| 12 |
+
}
|
| 13 |
+
}
|