kongdeqiang
2022-09-22 bb31220ccb1e5dbc7ba5498b306f32699185d3f8
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':''
                }
            }
        }
    }
}