什么是create-react-app中的public / manifest.json文件?


91

我知道chrome扩展使用'manifest.json`,但是在这里,它也被用作其他东西。

内容-

{
  "short_name": "React App",
  "name": "Create React App Sample",
  "icons": [
    {
      "src": "favicon.ico",
      "sizes": "192x192",
      "type": "image/png"
    }
  ],
  "start_url": "./index.html",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff"
}

当我更改某些值时,页面会更新,但没有任何变化。

Answers:


114

这是一个描述您的应用程序的Web App清单,例如,如果在主屏幕上添加了快捷方式,则该清单将被移动电话使用。

从MDN(上面链接):

Web应用程序清单在JSON文本文件中提供有关应用程序的信息(例如名称,作者,图标和描述)。清单的目的是将Web应用程序安装到设备的主屏幕上,从而为用户提供更快的访问权限和更丰富的体验。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.