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

18-html压缩

时间:2020-12-02 12:28:54      阅读:11      评论:0      收藏:0      [点我收藏+]

标签:white   hit   lap   nts   ports   div   module   web   bpa   

const { resolve } = require(‘path‘);
const HtmlWebpackPlugin = require(‘html-webpack-plugin‘);

module.exports = {
  entry: ‘./src/js/index.js‘,
  output: {
    filename: ‘js/built.js‘,
    path: resolve(__dirname, ‘build‘)
  },
  plugins: [
    new HtmlWebpackPlugin({
      template: ‘./src/index.html‘,
      // 压缩html代码
      minify: {
        // 移除空格
        collapseWhitespace: true,
        // 移除注释
        removeComments: true
      }
    })
  ],
  mode: ‘production‘
};

 

18-html压缩

标签:white   hit   lap   nts   ports   div   module   web   bpa   

原文地址:https://www.cnblogs.com/zhanchujin/p/14050632.html

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