pokerogue/manifest.json
Jason Halvorson 58ef8f5aec Fix the logo not appearing when installed as a PWA
I think I initially had manifest.json in `src/`, but moved it to the
root dir and forgot to update the src property..
2024-04-11 23:18:01 -04:00

17 lines
492 B
JSON

{
"name": "PokéRogue",
"short_name": "PokéRogue",
"description": "A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible.",
"start_url": "/",
"display": "standalone",
"background_color": "#8c8c8c",
"theme_color": "#8c8c8c",
"icons": [
{
"src": "./logo.png",
"sizes": "128x128",
"type": "image/png"
}
]
}