config
文件夾下新建 proxy.conf.js
文件:
module.exports = {
'/api': {
target: 'http://192.168.1.11:8080',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
config
文件夾下index.js
中引入proxy.conf.js
const proxyConfig = require('./proxy.conf')
修正index.js
中dev
設置中的proxyTable
變量
dev: {
proxyTable: proxyConfig
}
運轉npm run dev
重新啟動項目
注:每次修正代辦文件后都需重啟