Google Chrome Lighthouse 关于清单 'short_name' 的最佳实践审核有误?
Error in Google Chrome Lighthouse's Best Practice audit regarding manifest 'short_name'?
我在使用 Google Chrome 的新审核功能 (Lighthouse) 时遇到错误。我收到以下消息作为审核失败:
Manfiest's short_name
will be truncated when displayed on homescreen
他们建议我 short_name
少于 12 个字符,这已经是。
manifest.json
{
"description": "This is a description of my site",
"lang": "en-US",
"name": "The Very Long Title of My Site",
"short_name": "MySite",
"start_url": ".",
"theme_color": "#171c28",
"main.css": "wp-content/themes/mikedpad/style.css",
"main.js": "wp-content/themes/mikedpad/js/main.js",
"manifest.js": "wp-content/themes/mikedpad/js/manifest.js",
"vendor.js": "wp-content/themes/mikedpad/js/vendor.js"
}
我只是想弄清楚 Lighthouse 端是否有问题,或者清单中是否有不正确/无效的内容未通过审核?
我在发帖几个小时后发现了这个问题。 Chrome 工具按预期工作,问题出在我的 PHP 上。一旦我的文档将正确的标签打印到 <head>
标签中,审核就应该通过了。
<link rel="manifest" href="manifest.json">
我在使用 Google Chrome 的新审核功能 (Lighthouse) 时遇到错误。我收到以下消息作为审核失败:
Manfiest's
short_name
will be truncated when displayed on homescreen
他们建议我 short_name
少于 12 个字符,这已经是。
manifest.json
{
"description": "This is a description of my site",
"lang": "en-US",
"name": "The Very Long Title of My Site",
"short_name": "MySite",
"start_url": ".",
"theme_color": "#171c28",
"main.css": "wp-content/themes/mikedpad/style.css",
"main.js": "wp-content/themes/mikedpad/js/main.js",
"manifest.js": "wp-content/themes/mikedpad/js/manifest.js",
"vendor.js": "wp-content/themes/mikedpad/js/vendor.js"
}
我只是想弄清楚 Lighthouse 端是否有问题,或者清单中是否有不正确/无效的内容未通过审核?
我在发帖几个小时后发现了这个问题。 Chrome 工具按预期工作,问题出在我的 PHP 上。一旦我的文档将正确的标签打印到 <head>
标签中,审核就应该通过了。
<link rel="manifest" href="manifest.json">