Lägger till manifest.json för PWA-stöd och referens i index.html

This commit is contained in:
2025-01-24 17:39:16 +01:00
parent 575384d67f
commit 20f772aae7
10 changed files with 25 additions and 1 deletions

22
manifest.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "Fredriks todos",
"short_name": "TODO",
"description": "An app to manage tasks in Org mode format.",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#4CAF50",
"icons": [
{
"src": "icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}