flet-build-template/{{cookiecutter.out_dir}}/web/manifest.json

35 lines
1.0 KiB
JSON

{
"name": "{{ cookiecutter.product_name }}",
"short_name": "{{ cookiecutter.project_name }}",
"start_url": ".",
"display": "standalone",
"background_color": "{{ cookiecutter.pwa_background_color }}",
"theme_color": "{{ cookiecutter.pwa_theme_color }}",
"description": "{{ cookiecutter.project_description }}",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}