gpt4 book ai didi

json - firebase.json 中的缓存控制 header 不起作用

转载 作者:行者123 更新时间:2023-12-04 03:25:58 25 4
gpt4 key购买 nike

Cache-Control我的 firebase.json 中的标题似乎没有工作。 max-age所有文件的值设置为 31536000 (1 年),但是在加载页面时它仍然设置为浏览器默认值 3600 (1小时)。
firebase.json文件似乎遵守firebase documentation.

{
"hosting": {
"public": "public"
},
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"headers": [{
"source": "**",
"headers": [{
"key": "Cache-Control",
"value": "max-age=31536000"
}]
}]
}

最佳答案

根据 full page您必须设置的配置托管 key 第一的。

这必须工作:

{
"hosting": {
"public": "app",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"headers": [{
"source" : "**",
"headers" : [{
"key" : "Cache-Control",
"value" : "max-age=31536000"
}]
}]
}
}

关于json - firebase.json 中的缓存控制 header 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38114755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com