1
를 다시로드하지 않습니다 : 그것은 한 번 CSS를 다시로드 한 후이 오류와 충돌합니다 Gulp.js이 내 Gulpfile입니다 일반 CSS를
var gulp = require('gulp'),
watch = require('gulp-watch'),
livereload = require('gulp-livereload');
gulp.task('watch', function() {
livereload.listen();
gulp.watch('./css/**/*.css', ['css']).on('change', livereload.changed);
gulp.watch('./js/**/*.js', ['js']).on('change', livereload.changed);
gulp.watch('./**/*.php').on('change', livereload.changed);
});
gulp.task('default', [ 'watch']);
:로 만들기 위해 무엇을
[15:30:13] style.css was reloaded.
[15:30:13] Task 'css' is not in your gulpfile
[15:30:13] Please check the documentation for proper gulpfile formatting
확실하지 않음 누구나 비슷한 문제가 있었나요?
힙합을 생각해 냈습니다. D –