From 01d3599f3271aacad704adf9f2c8bd8385f44e80 Mon Sep 17 00:00:00 2001 From: Amadou Sall Date: Fri, 18 Oct 2019 01:40:42 +0200 Subject: [PATCH] docs: clarify instructions on where to create the proxy.conf.json file (#33244) PR Close #33244 --- aio/content/guide/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/build.md b/aio/content/guide/build.md index d1d6780077..54d519257a 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -328,7 +328,7 @@ For more information, see [Autoprefixer documentation](https://autoprefixer.gith You can use the [proxying support](https://webpack.js.org/configuration/dev-server/#devserver-proxy) in the `webpack` dev server to divert certain URLs to a backend server, by passing a file to the `--proxy-config` build option. For example, to divert all calls for `http://localhost:4200/api` to a server running on `http://localhost:3000/api`, take the following steps. -1. Create a file `proxy.conf.json` in the projects `src/` folder, in the same directory as `package.json`. +1. Create a file `proxy.conf.json` in your project's `src/` folder. 1. Add the following content to the new proxy file: ```