wang-hao-jie
2022-08-25 65605e0721f0006a943164b05ba7cffbc77f0a8b
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':''
                }
            }
        }
    }
}