在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">
应该可以解决问题。