在 chrome 中包含 manifest.json 文件的 link 会使 Lighthouse 审计崩溃
Including a link for manifest.json file crashes Lighthouse audit in chrome
灯塔审核在 运行 审核时挂起。
我尝试删除 manifest.json link 并且它可以正常运行审计。
这是 manifest.json 文件
{
"name": "Our School",
"short_name": "ourschool",
"start_url": "/index.html",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#fff",
"icons": [
{
"src": "/img/icon-72x72.png",
"type": "image/png",
"sizes": "72x72"
},
...
]
}
这是我 link编辑 HTML 中的文件的方式。
<link rel="manifest" href="/manifest.json" />
确保未选中“清除存储”复选框,您可以在灯塔设置中找到它。
灯塔审核在 运行 审核时挂起。 我尝试删除 manifest.json link 并且它可以正常运行审计。
这是 manifest.json 文件
{
"name": "Our School",
"short_name": "ourschool",
"start_url": "/index.html",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#fff",
"icons": [
{
"src": "/img/icon-72x72.png",
"type": "image/png",
"sizes": "72x72"
},
...
]
}
这是我 link编辑 HTML 中的文件的方式。
<link rel="manifest" href="/manifest.json" />
确保未选中“清除存储”复选框,您可以在灯塔设置中找到它。