File size: 215 Bytes
92b6413
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:5000', // 后端 API 地址
        changeOrigin: true,
        pathRewrite: { '^/api': '' },
      },
    },
  },
};