]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - vue.config.js
Fix logo always shown issue.
[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 },
2301d891
BW
10 pwa: {
11 manifestPath: "assets/manifest.json"
12 }
b9c5fcf0 13};