-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
38 lines (35 loc) · 997 Bytes
/
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
// const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin')
module.exports = {
publicPath: './',
devServer: {
proxy: {
'/api': {
target: 'http://127.0.0.1:10066', //对应自己的接口
changeOrigin: true,
ws: true,
pathRewrite: {
'^/api': 'api'
}
},
'/ws': {
target: 'http://127.0.0.1:10066', //对应自己的接口
changeOrigin: true,
ws: true,
pathRewrite: {
'^/ws': 'socket'
}
}
}
},
configureWebpack: {
plugins: [
// 注意,这里的插件得是6.3.2版本的,最新的v11不支持vue-cli-service
// new MonacoWebpackPlugin()
],
},
chainWebpack: config => {
config
.entry('index')
.add('babel-polyfill')
}
};