From b9c5fcf085bed9c6100283133531b36bfbb06cf0 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Mon, 25 May 2020 15:07:03 -0700 Subject: Build system integration using vue-cli. --- vue.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vue.config.js (limited to 'vue.config.js') 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 @@ +module.exports = { + chainWebpack: (config) => { + config.module + .rule("yaml") + .test(/\.ya?ml$/) + .use("raw-loader") + .loader("raw-loader") + .end(); + }, +}; -- cgit v1.2.3