码迷,mamicode.com
首页 > Web开发 > 详细

webpack 之压缩js代码 和html文件

时间:2020-06-06 00:35:49      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:white   style   col   temp   space   打包   com   webpack   index   

1.压缩JS代码,mode设置为production后,打包时自动压缩代码

mode:production,

2.压缩html文件,html文件不需要处理兼容问题,压缩文件只需要在plugins中的HtmlWebpackPlugin中配置minify即可

new HtmlWebpackPlugin({
    template:./src/index.html,
    minify:{
      //移除空格
      collapseWhitespace:true,
      //移除注释
      removeComments:true
    },
}),

 

webpack 之压缩js代码 和html文件

标签:white   style   col   temp   space   打包   com   webpack   index   

原文地址:https://www.cnblogs.com/hllzww/p/13052973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!