1234567891011121314151617181920 |
- module.exports = {
- devServer: {
- proxy: {
- '/api': {
- // target: 'http://118.190.145.217:8090',
- // target: 'http://nj.scxjc.club',
- target:'http://xjctest.baianxi.com/',
- changeOrigin: true
- }
- },
- overlay: {
- warning: false,
- errors: false
- }
- },
- publicPath: '/',
- lintOnSave: false
- }
|