Added backend folder structure.

This commit is contained in:
2025-02-22 12:55:06 +05:30
parent fc8c089ade
commit 793e6c2009
18 changed files with 3215 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"version": 2,
"builds": [
{
"src": "index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/api/v1/(.*)",
"dest": "index.js"
},
{
"src": "/(.*)",
"dest": "index.js"
}
]
}