xyc
2026-08-23 783e92ef4ae31a81675c1341603e6456aceaa930
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
  parallel: false,
  devServer: {
    port: 8080,
    proxy: {
      "/api": {
        target: "http://localhost:8090",
        changeOrigin: true
      }
    }
  }
}