PWA bringup

This commit is contained in:
Daniel 2023-11-08 12:51:20 +01:00
parent 5f86a1638e
commit da414dd867
2 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,7 @@
<link rel="icon" id="favicon">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="js/main.js" type="module"></script>
<link rel="manifest" href="manifest.json" />
</head>
<body>
<div id="background"></div>

14
public/manifest.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "honey",
"short_name": "honey",
"description": "Nice and sweet place for all your self-hosted services",
"start_url": "/",
"background_color": "#000",
"display": "standalone",
"icons": [
{
"src": "img/icon.png",
"sizes": "192x192 256x256 512x512"
}
]
}