一、contrib-htmlmin 插件的使用
创新互联专注于宣恩网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供宣恩营销型网站建设,宣恩网站制作、宣恩网页设计、宣恩网站官网定制、成都小程序开发服务,打造宣恩网络公司原创品牌,更为您提供宣恩网站排名全网营销落地服务。
1、安装 “grunt-contrib-htmlmin ”插件命令(在终端进入到项目根目录执行)
npm install grunt-contrib-htmlmin --save-dev
2、在项目根目录下提供 htmlmin 插件任务配置需要的 src 目录和需要被压缩的源文件(html 源文件放置到 src 目录下)
mkdir src
3、在 Gruntfile.js 文件中对 htmlmin 任务进行配置
// 包装函数
module.exports = function (grunt) {
// 任务配置,所有插件的配置信息
grunt.initConfig({
// 获取 package.json 的信息
pkg: grunt.file.readJSON('package.json'),
// htmlmin 插件的配置信息
htmlmin: {
options: {
removeComments: true, // 去除注释信息
collapseWhitespace: true, // 去除空白字符
removeEmptyAttributes: true, // 去除标签的空属性
removeCommentsFromCDATA: true, // 去除 CDATA 的注释信息
removeRedundantAttributes: true // 去除标签的冗余属性
},
// 具体任务配置
build: {
files: [{
expand: true,
cwd: 'src',
src: '**/*.html',
dest: 'dest'
}]
}
}
});
// 加载指定插件任务
grunt.loadNpmTasks('grunt-contrib-htmlmin');
// 默认执行的任务
grunt.registerTask('default', ['htmlmin']);
};
PS:htmlmin 插件的配置有两项:
“options”中通过使用各种属性来指定 htmlmin 压缩时的操作。
“build”中指定哪些 html 文件需要进行压缩。
4、最后在终端运行 grunt 命令
PS:如果提示 "Done, without errors." 证明就没什么问题了,现在去项目根目录下看是否已经生成了存放压缩文件的目录和被压缩后的目标文件。