-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
57 lines (52 loc) · 1.36 KB
/
vue.config.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const webpack = require('webpack')
const RUN_URL = {
production: JSON.stringify('https://cobbleup.org/run/'),
development: JSON.stringify('./run/')
}
const API_URL = {
production: JSON.stringify('https://cobbleup.org/api'),
development: JSON.stringify('http://localhost/cobble/api')
}
const ENVIRONMENT = {
production: JSON.stringify('production'),
development: JSON.stringify('development')
}
// check environment mode
const environment =
process.env.NODE_ENV === 'production' ? 'production' : 'development'
module.exports = {
devServer: {
https: false
},
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html'
// chunks: ['chunk-vendors', 'chunk-common', 'index']
},
run: {
entry: 'src/run/main.js',
template: 'public/run/index.html',
filename: 'run/index.html'
// chunks: ['chunk-vendors', 'chunk-common', 'run']
}
},
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
API_URL: API_URL[environment]
}),
new webpack.DefinePlugin({
RUN_URL: RUN_URL[environment]
}),
new webpack.DefinePlugin({
ENVIRONMENT: ENVIRONMENT[environment]
}),
new webpack.ContextReplacementPlugin(/.*/, data => {
delete data.dependencies[0].critical
return data
})
]
}
}