4
2
Fork 0

Change the App title

This commit is contained in:
Erastus Amunwe 2020-11-02 09:37:59 +02:00
parent 2a8dc8f79b
commit 9130825843
1 changed files with 23 additions and 0 deletions

23
vue.config.js Normal file
View File

@ -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 <title><%= htmlWebpackPlugin.options.title %></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'
}
}