我有一个快速的问题。
我正在使用 Polymer 和Lighthouse报告构建 PWA,该清单start_url
未由ServiceWorker缓存。
由于我想跟踪使用“添加到主屏幕”功能的用户,我的 manifest.json 包含
"start_url": "index.html?homescreen=1",
我尝试将这个确切的字符串放入我的sw-precache
配置文件中,但脚本会生成一个 ServiceWorker,它只是缓存 index.html 文件。(我知道,缓存 index.html 和 index.html?homescreen=1 有点多余)
你有什么想法,如何解决这种行为?
谢谢!