康凯
2022-01-27 799c8f4c6afe0684aa90a202ee499191fb918712
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
    publicPath:'./',
    devServer: {
        proxy: {
            '/api': {
                target: 'http://hsly.xingyao100.com/',
                changeOrigin: true,
                pathRewrite: {
                    '^/api': ''
                }
            }
        }
    },
}