fix(vercel/backend): fix missing CORS headers

This commit is contained in:
Kentai Radiquum 2024-05-15 20:14:37 +05:00
parent c73e84078a
commit 9239dc28c7
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -10,5 +10,23 @@
"src": "/(.*)",
"dest": "main.py"
}
],
"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"
}
]
}