From e2098652cab395db4c654bfb1dab4a16bbfa929c Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 19 Feb 2018 21:46:08 -0600 Subject: [PATCH] updated README to reflect bs options location --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4b52188..a3ea9b2 100644 --- a/README.md +++ b/README.md @@ -95,11 +95,14 @@ To work and compile your Sass files on the fly start: Or, to run with Browser-Sync: -- First change the browser-sync options to reflect your environment in the file `/gulpfile.js` in the beginning of the file: -```javascript -var browserSyncOptions = { - proxy: "localhost/theme_test/", // <----- CHANGE HERE - notify: false +- First change the browser-sync options to reflect your environment in the file `/gulpconfig.json` in the beginning of the file: +```json +{ + "browserSyncOptions" : { + "proxy": "localhost/theme_test/", // <----- CHANGE HERE + "notify": false + }, + ... }; ``` - then run: `$ gulp watch-bs`