We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d6182 commit 1142fb2Copy full SHA for 1142fb2
2025/src/html/layouts/layout.html
@@ -27,7 +27,7 @@
27
<link rel="stylesheet" href="css/bootstrap.css" />
28
<link rel="stylesheet" href="css/style.css" />
29
<link rel="stylesheet" href="css/main.css" />
30
- <link rel="manifest" href="/manifest.json">
+ <link rel="manifest" href="./manifest.json">
31
</head>
32
33
<body class="page-top">
2025/src/js/service-worker.js
@@ -1,9 +1,9 @@
1
const CACHE_NAME = 'sotm-2025';
2
const urlsToCache = [
3
- '/',
4
- '/index.html',
5
- '/css/main.css',
6
- '/js/main.js'
+ './',
+ './index.html',
+ './css/main.css',
+ './js/main.js'
7
];
8
9
// Install event
0 commit comments