isitfake / BackEnd /vercel.json
Jennigwen's picture
Update : Git Ignore .env
88ea31f
Raw
History Blame Contribute Delete
523 Bytes
{
"version": 2,
"builds": [
{
"src": "run.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"methods": ["OPTIONS"],
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization",
"Access-Control-Max-Age": "86400"
},
"status": 200
},
{
"src": "/(.*)",
"dest": "run.py"
}
]
}