aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-07-04 22:17:41 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-07-04 22:17:41 +0200
commit2f1aff4dc5115232b16faf20e85ac4a90677661a (patch)
tree81af318bd2c12e2cdf913a1df6d8916e706ec3f2
parent73d52dbd380471100a6a1eca341b0e98aa5c692e (diff)
downloadhomer-2f1aff4dc5115232b16faf20e85ac4a90677661a.tar.gz
homer-2f1aff4dc5115232b16faf20e85ac4a90677661a.tar.zst
homer-2f1aff4dc5115232b16faf20e85ac4a90677661a.zip
Fix icons path
-rw-r--r--vite.config.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/vite.config.js b/vite.config.js
index b568fe6..46fe909 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -22,21 +22,15 @@ export default defineConfig({
22 theme_color: "#3367D6", 22 theme_color: "#3367D6",
23 icons: [ 23 icons: [
24 { 24 {
25 src: "pwa-192x192.png", 25 src: "./icons/pwa-192x192.png",
26 sizes: "192x192", 26 sizes: "192x192",
27 type: "image/png", 27 type: "image/png",
28 }, 28 },
29 { 29 {
30 src: "pwa-512x512.png", 30 src: "./icons/pwa-512x512.png",
31 sizes: "512x512", 31 sizes: "512x512",
32 type: "image/png", 32 type: "image/png",
33 }, 33 },
34 {
35 src: 'pwa-512x512.png',
36 sizes: '512x512',
37 type: 'image/png',
38 purpose: 'any maskable'
39 }
40 ], 34 ],
41 }, 35 },
42 }), 36 }),