gulp.task('fileinclude', function() {
gulp.src(['app/index.html'])
.pipe(fileinclude({
prefix: '@@',
basepath: '@file',
}))
.pipe(gulp.dest('./'));
});
gulp.task('fileinclude', function() {
return gulp.src(['app/index.html'])
.pipe(fileinclude({
prefix: '@@',
basepath: '@file',
}))
.pipe(gulp.dest('./'));
});