Aria_Bot / deployment /vercel.json
AbhishekPathak01's picture
first commit
2a86195
raw
history blame contribute delete
509 Bytes
{
"version": 2,
"name": "neurachat-frontend",
"builds": [
{
"src": "frontend/**",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/frontend/$1"
}
],
"headers": [
{
"source": "/neurachat-widget.js",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "*"
},
{
"key": "Cache-Control",
"value": "public, max-age=3600"
}
]
}
]
}