module.exports = {
configureWebpack: {
resolve: {
alias: {
//配置别名
'assets': '@/assets',
'common': '@/common',
'components': '@/components',
'network': '@/network',
'views': '@/views',
'pluginunit':'@/pluginunit'
}
}
},
devServer: {
open:false,//启动项目后自动开启浏览器
host:'192.168.1.14',//对应的主机名
port:8084,//端口号
proxy: {
'/api': {
target: 'https://www.baidu.com/',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/api': '/'
}
},
}
}
}