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