康凯
2021-12-17 2583bfd2846e83dd0b31e515f5c5605c0b4c9f10
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': ''
                }
            }
        }
    },
}