如何在清单中使用单个图标-pwa

时间:2019-05-06 15:13:45

标签: json progressive-web-apps

我正在建立一个拥有pwa支持的网站。我的manifest.json是

{
    "name": "test",
    "short_name": "Test",
    "icons": [{
        "src": "img/manifest/128x128.png",
        "sizes": "128x128",
        "type": "image/png"
    }, {
        "src": "img/manifest/152x152.png",
        "sizes": "152x152",
        "type": "image/png"
    }, {
        "src": "img/manifest/144x144.png",
        "sizes": "144x144",
        "type": "image/png"
    }],
    "start_url": "/",
    "display": "standalone",
    "background_color": "#fdfdfd",
    "theme_color": "#4acaa8",
    "scope": "/",
    "lang": "en-US",
    "orientation": "any"
}

我只想使用一个图标。如何相应地更改代码。

0 个答案:

没有答案