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

html 和 js 压缩

时间:2020-06-05 21:12:00      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:mic   mod   out   comm   mini   自动   res   hit   product   

1,js 压缩:

将 mode 改为“production" 即可,production 模式下,webpack 会自动压缩 js 文件

2,html 压缩:

src / index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>webpack</title>
</head>
<body>
    <!-- 这是注释 -->
    <h1>hello webpack</h1>
</body>
</html>

webpack配置:

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

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

打包后的 index.html,清除了空格和注释,

技术图片

 

html 和 js 压缩

标签:mic   mod   out   comm   mini   自动   res   hit   product   

原文地址:https://www.cnblogs.com/shanlu0000/p/13052150.html

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