]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - vue.config.js
Build system integration using vue-cli.
[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 },
10};