5

当我在端口 3330 上提供网络应用程序时,我可以使用 --proxy ./src/proxy.config.json 使网络应用程序在端口 3333 上工作,但我不知道如何使 http-server 工作以同样的方式

"start": "ng serve -o --port 3330 --watch --proxy-config ./src/proxy.config.json",
"pwa": "http-server -p 8080 -c-1 dist/satoshi-pwa --proxy http://localhost:3333",

proxy.config.json:

{
  "/api": {
    "target": "http://localhost:3333",
    "secure": false,
    "changeOrigin": true,
    "pathRewrite": {
      "^/api": "/"
    }
  }
}

环境.ts:

export const environment = {
  production: true,
  apiUrl: 'http://localhost:3333/api'
};
4

0 回答 0