Skip to content

Commit

Permalink
Allow subfolder usage
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed Jun 7, 2020
1 parent bd91094 commit b0a0fda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
15 changes: 8 additions & 7 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
},
};

0 comments on commit b0a0fda

Please sign in to comment.