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 From 2301d8919c28eb888ea1eb968d03376b2219a27d Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Sat, 30 May 2020 17:17:39 -0700 Subject: Adding PWA icons for proper pwa support --- vue.config.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vue.config.js') diff --git a/vue.config.js b/vue.config.js index 06a1146..3b104f7 100644 --- a/vue.config.js +++ b/vue.config.js @@ -7,4 +7,7 @@ module.exports = { .loader("raw-loader") .end(); }, + pwa: { + manifestPath: "assets/manifest.json" + } }; -- cgit v1.2.3