如何使用firebase工具增加缓存过期日期?

时间:2014-11-24 18:37:54

标签: firebase-hosting

我似乎无法使max-age适用于任何文件。我想增加缓存的到期时间,并且我一直在尝试仅增加映像时间以用于测试目的。仍然,chrome和firefox使用此json文件Image shows the files structure and the firebase.json file

将图像的最大年龄状态设置为3600

1 个答案:

答案 0 :(得分:0)

标题的source与该文件夹中图片的输入路径不匹配 - 需要以/开头:

{
  "firebase": "sistema-de-oficios",
  "public": ".",
  "ignore": [
    "firebase.json",
    "**/.*",
    "**/node_modules/**"
  ],
  "headers": [{
    "source": "/css/images/*.@(jpg|jpeg|gif|png)",
    "headers": [{
      "key": "Cache-Control",
      "value": "max-age=7200"
    }]
  }]
}

另外,在撰写本文时,请确保您已使用firebase-tools的最新版本1.1.4