【メモ】middleman4xのlivereload
ブラウザにアドオンを追加する。
僕がFirefox Quantum に追加したのは
LiveReload 2.1.0 by Todd Wolfson
https://github.com/twolfson/livereload-extensions
gulpfile.js
var gulp = require('gulp');
var webserver = require('gulp-webserver');
gulp.task('liveReload', function(){
gulp.src('source')
.pipe(webserver({
livereload: true
}));
});
gulp.task('default', ['liveReload']);
あとはターミナルでgulpを起動させるだけ。
ただmiddleman3xのlivereloadと比べるとめちゃくちゃ遅いw
Author And Source
この問題について(【メモ】middleman4xのlivereload), 我々は、より多くの情報をここで見つけました https://qiita.com/ketabawo/items/17c4ac5338ecc55b4d5a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .