From 933772ed6920a931b0d39d0c54144f426e992ff3 Mon Sep 17 00:00:00 2001 From: Max Kramer Date: Wed, 24 Apr 2019 17:33:27 -0400 Subject: [PATCH] docs(aio): clarify "next to" as "same directory" (#30099) closes #29337 PR Close #30099 --- 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 4b7eea4955..56fd3e3066 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -315,7 +315,7 @@ If you want to produce a progressive web app and are using [Lighthouse](https:// 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, next to `package.json`. +1. Create a file `proxy.conf.json` in the projects `src/` folder, in the same directory as `package.json`. 1. Add the following content to the new proxy file: ```