fix(vercel/backend): fix vercel backend deploy

This commit is contained in:
Kentai Radiquum 2024-05-15 20:32:09 +05:00
parent ebc28e7b42
commit c0d295c78a
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -9,30 +9,13 @@
"routes": [
{
"src": "/(.*)",
"dest": "main.py"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET,POST"
},
{
"key": "Access-Control-Allow-Headers",
"value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version"
}
]
"dest": "main.py",
"headers": {
"Access-Control-Allow-Credentials": "true",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET,POST",
"Access-Control-Allow-Headers": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version"
}
}
]
}