manifest.json许多尺寸示例

    { “src”:”images/icons/apple-icon-57x57.png”,
    “type”: “image/png”,
    “sizes”: “57x57”,
    }


index.html链接中看起来像这样

    <link rel="apple-touch-icon" href=“%PUBLIC_URL%images/icons/apple-
    icon-57x57.png" sizes="57x57" />


图标文件位于public/images/icons中。

最佳答案

不知道您是否还在寻找答案,但这可能会对其他人有所帮助;您不需要自动关闭链接标记,因为您的index.html不是JSX文件。

因此<link rel="apple-touch-icon" sizes="57x57" href=“%PUBLIC_URL%images/icons/apple-icon-57x57.png">应该可以解决问题。

07-28 10:57