gulp-live-server 不刷新页面

gulp-live-server doesn't refresh page

我正在尝试使用 gulp-live-server 来自动重启我的服务器并在我的代码更改时刷新页面。

这是我的基本设置:

我的 server.js:

app.use(require('connect-livereload')());

我的 gulp 文件:

gulp.task('server', function () {
   server = gls('app.js', options);
    server.start();

    // Watch for file changes
    gulp.watch(['app.js', 'app/**/*.js', 'config/**/*.js', 'components/**/*.jsx'], function() {
        server.start.bind(server)();
        server.notify.bind(server)();
    });
});

我的服务器成功重启了,但是浏览器从来没有刷新过。

感谢帮助。

尝试在调用通知时传递文件:

gulp.task('server', function () {
   server = gls('app.js', options);
    server.start();

    // Watch for file changes
    gulp.watch(['app.js', 'app/**/*.js', 'config/**/*.js', 'components/**/*.jsx'], function(file) {
        server.start.bind(server)();
        server.notify.bind(server)(file);
    });
});