加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vercel.json 1016 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kael 提交于 2023-10-13 04:36 . chore: fix headers config specificity
{
"version": 2,
"cleanUrls": true,
"trailingSlash": true,
"rewrites": [
{
"source": "/(.*)",
"destination": "$1"
},
{
"source": "/((?!assets/).*)",
"destination": "/_fallback"
}
],
"headers": [
{
"source": "/(.*)",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=3600, must-revalidate"
}
]
},
{
"source": "[a-z0-9]{8}\\.(js|css)(\\.map)?",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=31536000, immutable"
}
]
},
{
"source": "/service-worker.js",
"headers" : [
{
"key" : "Cache-Control",
"value" : "public, max-age=0, s-maxage=0, must-revalidate"
},
{
"key" : "CDN-Cache-Control",
"value" : "max-age=0"
}
]
}
],
"github": {
"enabled": false,
"autoAlias": false,
"silent": true
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化