From 9dca1e04aacd81b477e52e6c487ec06f2f046e93 Mon Sep 17 00:00:00 2001 From: "Mikael E. Wikner" Date: Fri, 30 Oct 2015 11:11:58 +0100 Subject: [PATCH] Fixed what appears to be a typo --- docs/user-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide.md b/docs/user-guide.md index ed592620..b90a96b8 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -62,7 +62,7 @@ As mentioned in the introduction, it's considered a good process to keep using t At this point, your application will have to launch requests both to request static files of the front end project, and dynamic routes of your backend. -The cleaner way to address this need is to add a proxy feature to the Browser Sync server. This feature is inactive by default as we can't know about your backend configuration, but it's in the comments and easy to start. Look in `gulp/serve.js`, you've got a line in the comments: +The cleaner way to address this need is to add a proxy feature to the Browser Sync server. This feature is inactive by default as we can't know about your backend configuration, but it's in the comments and easy to start. Look in `gulp/server.js`, you've got a line in the comments: ```javascript server.middleware = proxyMiddleware('/users', {target: 'http://jsonplaceholder.typicode.com', proxyHost: 'jsonplaceholder.typicode.com'}); ```