aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-06 17:05:58 -0700
committerBastien Wirtz <bastien.wirtz@gmail.com>2020-06-06 17:05:58 -0700
commitb0a0fdaa3b2fca33ee128f39d9bd1c9dcfda0db8 (patch)
treeafeda806d8164ebd1377049e33c7915333a5da42
parentbd9109425a40f5b6c43147a7c9852014a5797dca (diff)
downloadhomer-b0a0fdaa3b2fca33ee128f39d9bd1c9dcfda0db8.tar.gz
homer-b0a0fdaa3b2fca33ee128f39d9bd1c9dcfda0db8.tar.zst
homer-b0a0fdaa3b2fca33ee128f39d9bd1c9dcfda0db8.zip
Allow subfolder usage127277198
-rw-r--r--README.md1
-rw-r--r--vue.config.js15
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 337fb5d..c2b7c84 100644
--- a/README.md
+++ b/README.md
@@ -166,7 +166,6 @@ services:
166 tag: "other" 166 tag: "other"
167 url: "https://www.reddit.com/r/selfhosted/" 167 url: "https://www.reddit.com/r/selfhosted/"
168 target: "_blank" # optionnal html a tag target attribute 168 target: "_blank" # optionnal html a tag target attribute
169
170``` 169```
171 170
172If you choose to fetch message information from an endpoint, the output format should be: 171If you choose to fetch message information from an endpoint, the output format should be:
diff --git a/vue.config.js b/vue.config.js
index ed0fa8c..7214c12 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -7,14 +7,15 @@ module.exports = {
7 .loader("raw-loader") 7 .loader("raw-loader")
8 .end(); 8 .end();
9 }, 9 },
10 publicPath: "",
10 pwa: { 11 pwa: {
11 manifestPath: "assets/manifest.json", 12 manifestPath: "assets/manifest.json",
12 iconPaths: { 13 iconPaths: {
13 favicon32: 'assets/icons/favicon-32x32.png', 14 favicon32: "assets/icons/favicon-32x32.png",
14 favicon16: 'assets/icons/favicon-16x16.png', 15 favicon16: "assets/icons/favicon-16x16.png",
15 appleTouchIcon: 'assets/icons/apple-touch-icon-152x152.png', 16 appleTouchIcon: "assets/icons/apple-touch-icon-152x152.png",
16 maskIcon: 'assets/icons/safari-pinned-tab.svg', 17 maskIcon: "assets/icons/safari-pinned-tab.svg",
17 msTileImage: 'assets/icons/msapplication-icon-144x144.png' 18 msTileImage: "assets/icons/msapplication-icon-144x144.png",
18 } 19 },
19 } 20 },
20}; 21};