我正在使用Firebase托管。
我注意到有时部署不会推送到与我的帐户关联的自定义域。
所以变化发生在:
myurl.firebaseapp.com
但不是
Myurl.io
此Firebase是否相关?
答案 0 :(得分:1)
使用firebase.json可以定义和控制缓存。以下json片段允许您为图像定义1年的缓存。
{
"source" :"**/*.@(jpg|jpeg|gif|png)",
"headers" : [ {
"key" : "Cache-Control",
"value" : "max-age=30672000"
} ]
}