www_mycelium/vercel.json
2025-05-27 12:46:45 +03:00

53 lines
965 B
JSON

{
"build": {
"env": {
"ZOLA_VERSION": "0.14.0"
}
},
"github": {
"silent": true
},
"headers": [
{
"source": "/css/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=0, must-revalidate"
}
]
},
{
"source": "images/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=2678400"
}
]
},
{
"source": "images/icons/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=2678400"
}
]
},
{
"source": "/fonts/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=2678400"
}
]
}
],
"routes": [
{ "src": "/css/index.css", "dest": "/css/index.css" }
],
"buildCommand": "bash build.sh",
"outputDirectory": "public"
}