]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - vue.config.js
Make Homer more "web app" friendly
[github/bastienwirtz/homer.git] / vue.config.js
CommitLineData
b9c5fcf0
BW
1module.exports = {
2 chainWebpack: (config) => {
3 config.module
4 .rule("yaml")
5 .test(/\.ya?ml$/)
6 .use("raw-loader")
7 .loader("raw-loader")
8 .end();
9 },
b0a0fdaa 10 publicPath: "",
2301d891 11 pwa: {
de0a746a
T
12 manifestPath: "assets/manifest.json",
13 iconPaths: {
b0a0fdaa
BW
14 favicon32: "assets/icons/favicon-32x32.png",
15 favicon16: "assets/icons/favicon-16x16.png",
16 appleTouchIcon: "assets/icons/apple-touch-icon-152x152.png",
17 maskIcon: "assets/icons/safari-pinned-tab.svg",
18 msTileImage: "assets/icons/msapplication-icon-144x144.png",
19 },
20 },
b9c5fcf0 21};