gulp-useref的作用是什么?
The following example will parse the build blocks in the HTML, replace them and pass those files through. Assets inside the build blocks will be concatenated and passed through in a stream as well.
var gulp = require('gulp'),
useref = require('gulp-useref');
gulp.task('default', function () {
return gulp.src('app/*.html')
.pipe(useref()) //有没有这句话似乎没什么影响
.pipe(gulp.dest('dist'));
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以把html里零碎的这些引入合并成一个文件,但是它不负责代码压缩。
An example of this in completed form can be seen below:
The resulting HTML would be:
这个插件创建的文档,要注意文档编码格式。