-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
36 lines (35 loc) · 773 Bytes
/
vue.config.js
File metadata and controls
36 lines (35 loc) · 773 Bytes
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
const webpack = require('webpack');
const configureAPI = require('./src/server/api')
module.exports = {
devServer: {
before: configureAPI
},
lintOnSave: false,
configureWebpack: {
resolve: {
alias: {
'chart.js': 'chart.js/dist/Chart.js'
}
},
plugins: [
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 10
})
]
},
pwa: {
name: 'OnePanel',
workboxPluginMode: 'InjectManifest',
workboxOptions: {
swSrc: 'src/service-worker.js'
},
themeColor: '#344675',
msTileColor: '#344675',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: '#344675'
},
css: {
// Enable CSS source maps.
sourceMap: process.env.NODE_ENV !== 'production'
}
};