webpack打包逻辑代码分离优化 (SplitChunksPlugin)

webpack打包如果js代码特别多 就会打包出一个特别大的js
那么 我们需要将js代码分离成多个js文件引入
从而控制文件大小 优化性能
先在终端输入

npm init 

按终端提示操作 就会生成一个项目 出现一个package.json文件
在终端输入

npm install webpack webpack-cli --save-dev

会生成这样的目录
在这里插入图片描述
然后为了更好的查看代码效果 我们引入html-webpack-plugin

npm install html-webpack-plugin --save

然后在根目录中构建src文件夹
在src下创建HelloWebpack.js
HelloWebpack.js参考代码如下

console.log('hello webpack');

在src下创建HelloWorld.js
HelloWorld.js参考代码如下

console.log('hello world');

在src下创建index.html
index.html参考代码如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
</body>
</html>

在根目录下创建webpack.config.js
webpack.config.js参考代码如下

//通过node获取到当前文件的位置
const path = require('path')
//导入刚引入的第三方插件html-webpack-plugin
const HtmlWebpackPplugin = require('html-webpack-plugin')
module.exports = {
    //设置当前入口文件
    entry: {
        HelloWebpack: './src/HelloWebpack.js',
        HelloWorld: './src/HelloWorld.js'
    },
    //出口配置
    output: {
      //打包的文件名
      filename: '[name].bundle.js',
      //生成的文件位置
      path: path.resolve(__dirname, './distribution')
    },
    mode: 'none',
    //webpack插件配置
    plugins: [
      //实例化html-webpack-plugin插件功能
      new HtmlWebpackPplugin({
        //html-webpack-plugin参数配置
        //指定打包HTML文件参照的模板HTML
        template: './src/index.html',
        //生成的html文件名称
        filename: 'app.html',
        //定义打包的js文件引入在新html的哪个标签里
        inject: 'head'
      })
    ],
    optimization:{
    //分离配置
      splitChunks: {
      //将相同的公共模块代码分离出来
        chunks: 'all'
      }
    }
}

重点就是entry 入口配置和output 出口配置
打开package.json
在scripts中加入"build": "webpack"配置项
在这里插入图片描述
然后在终端执行

npm run build

在这里插入图片描述
我们的两个js和html文件就打包出来了
然后我们用浏览器打开app.html
在这里插入图片描述
控制台输出的内容也没有任何问题

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值