Made progressive web app installable

This commit is contained in:
2026-05-12 17:09:27 +02:00
parent 7d9328b865
commit 06398e98e2
6 changed files with 71 additions and 56 deletions

24
misc/web/manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "MCPE 0.6.1",
"short_name": "MCPE 0.6.1",
"description": "Minecraft Pocket Edition 0.6.1 Alpha - Web Build",
"id": "./",
"start_url": "./",
"scope": "./",
"display_override": ["standalone"],
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"icons": [
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}