javascript - webpack CommonsChunkPlugin插件配置问题

 艾你如斯i 发布于 2022-11-21 01:03

http://webpack.github.io/docs/list-of-plugins.html#commonschunkplugin

里的 name 和 filename有什么区别 ?

new CommonsChunkPlugin({
  name: "commons",
  // (the commons chunk name)

  filename: "commons.js?1.2.1",
  // (the filename of the commons chunk)

  // minChunks: 3,
  // (Modules must be shared between 3 entries)

  // chunks: ["pageA", "pageB"],
  // (Only use these entries)
})
2 个回答
  • name 是 chunk 的名字,可以用来做入口文件,而
    filename 是最终js的路径。

    2022-11-21 01:39 回答
  • name 是配置文件里面入口文件的键名,filename 是输出的文件名。

    var  webpack = require('webpack')
     module.exports = {
        entry : {
            vendor : ['jquery']
        }
        ...
        plugins : [
            new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.bundle.js')
        ]
     }
    2022-11-21 01:39 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有