mirror of
https://github.com/getbible/app.git
synced 2024-11-16 01:57:14 +00:00
Change the App title
This commit is contained in:
parent
2a8dc8f79b
commit
9130825843
23
vue.config.js
Normal file
23
vue.config.js
Normal 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'
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user