updated README to reflect bs options location
This commit is contained in:
parent
e370d9a18f
commit
e2098652ca
13
README.md
13
README.md
|
@ -95,11 +95,14 @@ To work and compile your Sass files on the fly start:
|
||||||
|
|
||||||
Or, to run with Browser-Sync:
|
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:
|
- First change the browser-sync options to reflect your environment in the file `/gulpconfig.json` in the beginning of the file:
|
||||||
```javascript
|
```json
|
||||||
var browserSyncOptions = {
|
{
|
||||||
proxy: "localhost/theme_test/", // <----- CHANGE HERE
|
"browserSyncOptions" : {
|
||||||
notify: false
|
"proxy": "localhost/theme_test/", // <----- CHANGE HERE
|
||||||
|
"notify": false
|
||||||
|
},
|
||||||
|
...
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
- then run: `$ gulp watch-bs`
|
- then run: `$ gulp watch-bs`
|
||||||
|
|
Reference in New Issue