From b0a0fdaa3b2fca33ee128f39d9bd1c9dcfda0db8 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Sat, 6 Jun 2020 17:05:58 -0700 Subject: Allow subfolder usage --- README.md | 1 - vue.config.js | 15 ++++++++------- 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: 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: 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 = { .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", + }, + }, }; -- cgit v1.2.3