kongdeqiang
2022-11-23 25e76ed562c1dea580034cb988dae0065f0e39f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
    baseUrl: './',
    assetsDir: 'static',
    productionSourceMap: false,
    devServer: {
        proxy: {
            '/api':{
                target:'http://192.168.0.146',
                changeOrigin:true,
                pathRewrite:{
                    '/api':''
                }
            }
        }
    }
}