Fix broken PWA

This commit is contained in:
Daniel 2023-12-02 15:05:42 +01:00
parent df28e9dd8d
commit 598f269b08
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -7,7 +7,7 @@
"display": "standalone", "display": "standalone",
"icons": [ "icons": [
{ {
"src": "img/icon.png", "src": "/img/icon.png",
"sizes": "192x192 256x256 512x512" "sizes": "192x192 256x256 512x512"
} }
] ]