]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - vue.config.js
Build system integration using vue-cli.
[github/bastienwirtz/homer.git] / vue.config.js
diff --git a/vue.config.js b/vue.config.js
new file mode 100644 (file)
index 0000000..06a1146
--- /dev/null
@@ -0,0 +1,10 @@
+module.exports = {
+  chainWebpack: (config) => {
+    config.module
+      .rule("yaml")
+      .test(/\.ya?ml$/)
+      .use("raw-loader")
+      .loader("raw-loader")
+      .end();
+  },
+};