Home  >  Article  >  Web Front-end  >  Manifest.json

Manifest.json

PHPz
PHPzOriginal
2024-07-17 09:53:39517browse

Manifest.json

Manifest.json is necessary for Progressive Web Applications.

{
    "background_color": "#fff",
    "display": "standalone",
    "description": "Awesome application portal to Healing Services",
    "icons": [
        { "src": "192.png", "sizes": "192x192", "type": "image/png" },
        { "src": "512.png", "sizes": "512x512", "type": "image/png" }
    ],
    "name": "Holy Spirit Healing Services",
    "short_name": "The Holy Spirit",
    "start_url": "./healingservices.html"
}

The above is the detailed content of Manifest.json. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn