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