Sanket-Setu / frontend /vercel.json
devrajsinh2012's picture
Initial commit: SanketSetu - Sign Language Recognition System
cf93910
raw
history blame contribute delete
544 Bytes
{
"buildCommand": "npm run build",
"outputDirectory": "dist",
"framework": "vite",
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
],
"headers": [
{
"source": "/assets/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/(.*).wasm",
"headers": [
{ "key": "Content-Type", "value": "application/wasm" },
{ "key": "Cache-Control", "value": "public, max-age=86400" }
]
}
]
}