使用Vue CLI 3创建的PWA的Workbox CacheFirst策略问题

时间:2018-12-03 07:39:11

标签: vuejs2 service-worker progressive-web-apps cache-control workbox-webpack-plugin

我最近使用Vue CLI 3创建的PWA很好用,除了我无法将其缓存字体的时间长于max-age=0

这是我的设置:

vue.config.sys(适用部分)

module.exports = {
  pwa: {
    workboxOptions: {
      exclude: [/\.eot$/, /\.ttf$/],
      clientsClaim: true,
      skipWaiting: true,
      navigateFallback: 'index.html',
      runtimeCaching: [
        {
          urlPattern: /\.(?:woff|woff2)$/,
          handler: 'cacheFirst',
          options: {
            // Use a custom cache name for this route.
            cacheName: 'fonts',
            // Configure custom cache expiration.
            expiration: {
              maxEntries: 50,
              maxAgeSeconds: 30 * 24 * 60 * 60, // 30 days
              // Automatically cleanup if quota is exceeded.
              purgeOnQuotaError: true,
            },
          },
        },
      ],
    },
  },
};

结果service-worker.js(使用默认的GenerateSW模式)

service-worker.js

.htaccess(提供文件夹应用程序)

RewriteEngine On

# Redirects http calls to their equivalent https URL
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

# A simple catch-all fallback route used when the URL entered by the user
# doesn't match any of the provided app routes. This code is needed when
# using history mode in vue-router.
FallbackResource index.html

# Prevents directory viewing from a browser window.
Options -Indexes

Chrome Dev Tools Cache Storage Screen Grab

Screen Grab of Chrome Dev Tools Cache Storage

我想念什么?

1 个答案:

答案 0 :(得分:1)

在DevTools的“缓存存储”查看器中看到的Cache-Control标头是Web服务器最终设置的内容。Cache-Control标头值不是{ {1}}在确定缓存条目过期之前要等待多长时间。

根据显示的内容,看起来您应该会获得预期的行为,即,只要workbox-cache-expirationmaxAgeSeconds约束不存在,服务工作者就将使用缓存的字体没有违反。

那么...您实际上是在看到Workbox无法使用缓存的字体吗?