10

我正在测试我的 Polymer 应用程序,我在 Lighthouse 上获得了不错的分数。但是,我还有一个小问题。我有一个manifest.json包含所有内容的文件,因此可以将应用程序添加到主屏幕,但 Lighthouse 仍然失败说:Manifest start_url is not cached by a Service Worker.. 我正在使用 Polymer Starter Kit 2.0,但我不知道如何使用 Service Worker 缓存它。我有一个sw-precache-config.js包含:

module.exports = {
  staticFileGlobs: [
    '/index.html',
    '/index.html?launcher=true',
    '/manifest.json',
    '/bower_components/webcomponentsjs/*',
  ],
  navigateFallback: '/index.html',
};

/index.html?launcher=true清单的 start_url 在哪里。

4

1 回答 1

0

我认为在你的“index.html”文件中你有:

rel="manifest" href="manifest.json"
您必须通过以下方式更改它:
rel="manifest" href="/manifest.json"

您可以在此处找到 Google 团队提供的代码实验室: https ://codelabs.developers.google.com/codelabs/add-to-home-screen/#3

于 2017-07-11T17:48:36.450 回答