diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | vue.config.js | 15 |
2 files changed, 8 insertions, 8 deletions
@@ -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 | ||
172 | If you choose to fetch message information from an endpoint, the output format should be: | 171 | If 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 | }; |