1234567891011121314151617181920212223 |
- module.exports = {
- // 配置路径别名
- configureWebpack: {
- devServer: {
- disableHostCheck: true,
- https: false
- }
- },
- devServer: {
- port: '8890',
- disableHostCheck:true,
- proxy:{
- '/api':{
- target: 'https://wx.hw.hongweisoft.com/parking/',
- changeOrigin: true,
- pathRewrite:{
- '^/api': ''
- }
- }
- }
- },
-
- }
|