服务人员不在服务器上工作,但在本地生产版本中工作

时间:2019-12-05 06:58:28

标签: reactjs progressive-web-apps

服务工作者未在服务器上工作,但是在本地生产版本中工作正常。

我正在使用Create-react-app中的默认服务工作者

错误:无法安装站点:未检测到匹配的服务程序。您可能需要重新加载页面,或检查当前页面的服务工作者是否也从清单中控制了起始URL

请让我知道我是否错过了任何事情。

这是清单代码

{
  "short_name": "React app",
  "name": "React app",
  "icons": [
    {
      "src": "icon-120.png",
      "sizes": "120x120",
      "type": "image/png"
    },
    {
      "src": "app_icon_144x144.png",
      "sizes": "144x144",
      "type": "image/png"
    },
    {
      "src": "icon-152.png",
      "sizes": "152x152",
      "type": "image/png"
    },
    {
      "src": "icon-167.png",
      "sizes": "167x167",
      "type": "image/png"
    },
    {
      "src": "icon-180.png",
      "sizes": "180x180",
      "type": "image/png"
    },
    {
      "src": "app_icon_192x192.png",
      "sizes": "192x192",
      "type": "image/png"
    },
    {
      "src": "app_icon_512x512.png",
      "sizes": "512x512",
      "type": "image/png"
    },
    {
      "src": "favicon.ico",
      "sizes": "64x64 32x32 24x24 16x16",
      "type": "image/x-icon"
    }
  ],
  "start_url": ".",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff"
}

0 个答案:

没有答案