initial attempt with pwa

This commit is contained in:
Chris Kruining 2024-10-29 13:33:01 +01:00
parent ddf4519f41
commit b27abe928d
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
16 changed files with 382 additions and 220 deletions

33
public/manifest.json Normal file
View file

@ -0,0 +1,33 @@
{
"short_name": "T-Tool",
"name": "Translation Tool",
"description": "Simple tool to help with maitaining i18n files",
"icons": [
{
"src": "/images/favicon.dark.svg",
"type": "image/svg+xml",
"sizes": "any"
}
],
"start_url": ".",
"display": "standalone",
"display_override": [
"window-controls-overlay"
],
"theme_color": "#222",
"background_color": "#222",
"screenshots": [
{
"src": "/images/screenshots/narrow.png",
"type": "image/png",
"sizes": "538x1133",
"form_factor": "narrow"
},
{
"src": "/images/screenshots/wide.png",
"type": "image/png",
"sizes": "2092x1295",
"form_factor": "wide"
}
]
}