canvas-website/vercel.json

39 lines
674 B
JSON

{
"buildCommand": "yarn build",
"installCommand": "yarn install",
"framework": "vite",
"outputDirectory": "dist",
"rewrites": [
{
"source": "/posts/(.*)",
"destination": "/"
},
{
"source": "/board/(.*)",
"destination": "/"
},
{
"source": "/board",
"destination": "/"
},
{
"source": "/inbox",
"destination": "/"
},
{
"source": "/books",
"destination": "/"
}
],
"headers": [
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}