我想在我的工作流程中使用 gulp reload,但我遇到了麻烦。当我在命令行中通过“gulp”命令启动时,我有服务器连接,但是当我进入浏览器时,出现“Cannot GET /”字样,这是什么,我该如何解决这个问题?请帮忙。
我有下一个 gulpfile.js:
/**
* Created by adm on 4/24/2016.
*/
var gulp = require('gulp'),
rename = require('gulp-rename'),
minifyCSS = require('gulp-minify-css'),
notify = require("gulp-notify"),
livereload = require('gulp-livereload'),
connect = require('gulp-connect');
/*----------Local Server connect----------*/
gulp.task('connect', function() {
connect.server({
root: 'traning_js_skils',
livereload: true
});
});
/*----------HTML----------*/
gulp.task('html', function () {
gulp.src('./src/index.html')
.pipe(connect.reload());
});
/*----------CSS----------*/
gulp.task('css', function() {
return gulp.src('css/*.css')
.pipe(minifyCSS({keepBreaks:true}))
.pipe(rename('common.min.css'))
.pipe(gulp.dest('testfiles/'))
.pipe(livereload());
/*.pipe(connect.reload());*/
/*.pipe(notify('Done!'))*/
});
/*----------Watch----------*/
gulp.task('watch', function () {
livereload();
gulp.watch('css/*.css', ['css']);
gulp.watch('index.html', ['html']);
});
gulp.task('default', ['css', 'watch', 'connect']);