]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Allow subfolder usage 127277198
authorBastien Wirtz <bastien.wirtz@gmail.com>
Sun, 7 Jun 2020 00:05:58 +0000 (17:05 -0700)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Sun, 7 Jun 2020 00:05:58 +0000 (17:05 -0700)
README.md
vue.config.js

index 337fb5d3a67dfe2d42df01eaea3e562069035248..c2b7c84de31771355b63b32d70bb9a7f1151d839 100644 (file)
--- a/README.md
+++ b/README.md
@@ -166,7 +166,6 @@ services:
         tag: "other"
         url: "https://www.reddit.com/r/selfhosted/"
         target: "_blank" # optionnal html a tag target attribute
-      
 ```
 
 If you choose to fetch message information from an endpoint, the output format should be:
index ed0fa8c9a8b87104b21fe431b7cdcbe1d38c5db6..7214c12d9168581aeeac71c391e59379f762e2a6 100644 (file)
@@ -7,14 +7,15 @@ module.exports = {
       .loader("raw-loader")
       .end();
   },
+  publicPath: "",
   pwa: {
     manifestPath: "assets/manifest.json",
     iconPaths: {
-      favicon32: 'assets/icons/favicon-32x32.png',
-      favicon16: 'assets/icons/favicon-16x16.png',
-      appleTouchIcon: 'assets/icons/apple-touch-icon-152x152.png',
-      maskIcon: 'assets/icons/safari-pinned-tab.svg',
-      msTileImage: 'assets/icons/msapplication-icon-144x144.png'
-    }
-  }
+      favicon32: "assets/icons/favicon-32x32.png",
+      favicon16: "assets/icons/favicon-16x16.png",
+      appleTouchIcon: "assets/icons/apple-touch-icon-152x152.png",
+      maskIcon: "assets/icons/safari-pinned-tab.svg",
+      msTileImage: "assets/icons/msapplication-icon-144x144.png",
+    },
+  },
 };