aboutsummaryrefslogtreecommitdiffhomepage
path: root/vue.config.js
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-05-25 15:07:03 -0700
committerBastien Wirtz <bastien.wirtz@gmail.com>2020-05-25 15:07:03 -0700
commitb9c5fcf085bed9c6100283133531b36bfbb06cf0 (patch)
tree7baa4d16c9d6c06745727c7c273065a29b8fc1d7 /vue.config.js
parentab7ac44c191e3b7dea696e76b74097e23f73b18c (diff)
downloadhomer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.tar.gz
homer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.tar.zst
homer-b9c5fcf085bed9c6100283133531b36bfbb06cf0.zip
Build system integration using vue-cli.
Diffstat (limited to 'vue.config.js')
-rw-r--r--vue.config.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js
new file mode 100644
index 0000000..06a1146
--- /dev/null
+++ b/vue.config.js
@@ -0,0 +1,10 @@
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};