forked from mrin9/OpenAPI-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js_bak
34 lines (32 loc) · 864 Bytes
/
vue.config.js_bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const path = require('path')
module.exports = {
lintOnSave: false,
devServer: {
port:8082
},
configureWebpack:{
resolve: {
alias: {
//vue: 'vue/dist/vue.js'
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
}
},
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: 'Mrin - Order Processing System',
// chunks to include on this page, by default includes
// extracted common chunks and vendor chunks.
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
}
}