-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
54 lines (52 loc) · 1.31 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
const path = require('path');
module.exports = {
publicPath: '/',
pages: {
app: {
entry: 'src/main.ts',
template: 'public/index.html',
filename: 'index.html',
// chunks: ['chunk-vendors', 'chunk-common', 'index'],
}
},
css: {
loaderOptions: {
less: {
lessOptions: {
javascriptEnabled: true,
}
}
},
},
devServer: {
host: '0.0.0.0',
port: 8081,
hot: true,
// ipc: true,
liveReload: true,
open: true,
compress: true, //开启Http报文压缩
// client: {
// overlay: false, // 出现编译错误时全局提示
// progress: true, // 浏览器中以百分比显示编译速度
// reconnect: true, //无限次尝试重新连接
// },
headers: {
'username': 'ggw',
},
proxy: {
'/':{
target: 'http://localhost:8080/',
},
},
},
chainWebpack: (config) => {
config.resolve.alias
.set('@', path.resolve(__dirname, 'src'));
config
// config.module
// .rule('ts')
// .use('ts-loader')
// .end();
}
}