xyc
1 天以前 079d872fabfe488abf485d8898c40ff1fd746472
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  parallel: false,
  devServer: {
    port: 8080,
    headers: { "Cache-Control": "no-store" },
    proxy: {
      "/api": {
        target: "http://localhost:8090",
        changeOrigin: true
      }
    }
  }
}