康凯
2021-12-15 5d978e863c10aeb688b7f8f4330c48bc4b4062ad
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': '/'
                }
            }
        }
    },
}