diff options
| author | Fuwn <[email protected]> | 2024-01-10 21:16:11 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-10 21:16:11 -0800 |
| commit | a20e0ed4de58d34cfa29fd927d8a34e378355079 (patch) | |
| tree | 0301f69e2080d815ac066f2299f153c9f790a5a1 /static | |
| parent | fix(schedule): bypass forced refresh on move (diff) | |
| download | due.moe-a20e0ed4de58d34cfa29fd927d8a34e378355079.tar.xz due.moe-a20e0ed4de58d34cfa29fd927d8a34e378355079.zip | |
fix(html): use root for favicons
Diffstat (limited to 'static')
| -rw-r--r-- | static/manifest.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/static/manifest.json b/static/manifest.json index d198debb..3303032e 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -4,27 +4,27 @@ "start_url": "/", "icons": [ { - "src": "favicon-196x196.png", + "src": "https://due.moe/favicon-196x196.png", "type": "image/png", "sizes": "196x196" }, { - "src": "favicon-128.png", + "src": "https://due.moe/favicon-128.png", "type": "image/png", "sizes": "128x128" }, { - "src": "favicon-96x96.png", + "src": "https://due.moe/favicon-96x96.png", "type": "image/png", "sizes": "96x96" }, { - "src": "favicon-32x32.png", + "src": "https://due.moe/favicon-32x32.png", "type": "image/png", "sizes": "32x32" }, { - "src": "favicon-16x16.png", + "src": "https://due.moe/favicon-16x16.png", "type": "image/png", "sizes": "16x16" } |