gpt4 book ai didi

caching - Nuxt 高效缓存

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

使用高效的缓存策略提供静态 Assets 。如果我审核我的应用程序,我会得到这个。我将此代码添加到 nuxt.config 但这会有所帮助。

render: {
static: {
maxAge: 2592000
}
},

它默认在浏览器中缓存静态 Assets 1h。 我在哪里可以更改它。或者如何?

最佳答案

您应该使用 Firebase 为您的静态文件配置 header :

https://firebase.google.com/docs/hosting/full-config#headers

// in firebase.json
"hosting": {
// ...

// Add the "headers" attribute within "hosting", override cache control
"headers": [ {
"source": "**/*.@(jpg|jpeg|gif|png)",
"headers": [ {
"key": "Cache-Control",
"value": "max-age=2592000"
} ]
}
]
}

这应该会为您提供所需的缓存控制值,具体取决于您要在此处设置的内容。

关于caching - Nuxt 高效缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63100693/

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