We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fdf0ab commit 761398eCopy full SHA for 761398e
docs/recipes/server-with-livereload-and-css-injection.md
@@ -23,7 +23,7 @@ app/
23
24
... you can easily serve files from the `app` directory and have all browsers reload when any of them change with the following:
25
26
-```
+```js
27
var browserSync = require('browser-sync');
28
var reload = browserSync.reload;
29
@@ -51,7 +51,7 @@ var browserSync = require('browser-sync');
51
52
53
gulp.task('sass', function () {
54
- gulp.src('scss/styles.scss')
+ return gulp.src('scss/styles.scss')
55
.pipe(sass())
56
.pipe(gulp.dest('css'))
57
.pipe(reload({stream:true}));
0 commit comments