gulp-live-server不刷新页面

时间:2015-11-07 01:29:10

标签: javascript node.js gulp gulp-livereload

我尝试使用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)();
    });
});

我的服务器成功重启,但浏览器不会刷新。

非常感谢帮助。

0 个答案:

没有答案