sw-precache 离线模式不获取 js 或 css

sw-precache offline mode not fetching js or css

我正在为我的 React 渐进式应用程序使用 sw-precache-webpack-plugin,在离线模式下,我从 cacheStorage 获取模板,但它没有获取 css 或 js。不确定我哪里出错了。

new SWPrecacheWebpackPlugin({
      cacheId: 'example-app',
      filename: 'sw.js',
      // minify: true,
      runtimeCaching: [{
        urlPattern: '/',
        handler: 'cacheFirst',
      }],
      dynamicUrlToDependencies: {
        '/': ['./server/views/index.ejs'],
      },
    }),

我通过在下面添加解决了这个问题,这忽略了 url 参数。

  ignoreUrlParametersMatching: [/./],