From 9130825843bcd7b76c3bd7a913a90b2261bc3d66 Mon Sep 17 00:00:00 2001 From: Erastus Amunwe Date: Mon, 2 Nov 2020 09:37:59 +0200 Subject: [PATCH] Change the App title --- vue.config.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 vue.config.js diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000..1bf1999 --- /dev/null +++ b/vue.config.js @@ -0,0 +1,23 @@ +module.exports = { + pages: { + index: { + // entry for the page + entry: 'src/main.js', + // the source template + template: 'public/index.html', + // output as dist/index.html + filename: 'index.html', + // when using title option, + // template title tag needs to be <%= htmlWebpackPlugin.options.title %> + title: 'GetBible', + // chunks to include on this page, by default includes + // extracted common chunks and vendor chunks. + chunks: ['chunk-vendors', 'chunk-common', 'index'] + }, + // when using the entry-only string format, + // template is inferred to be `public/subpage.html` + // and falls back to `public/index.html` if not found. + // Output filename is inferred to be `subpage.html`. + subpage: 'src/main.js' + } + } \ No newline at end of file