【发布时间】:2019-12-10 06:30:47
【问题描述】:
我现在正在学习 webpack。但这让我对 Bundle 和 chunk 感到困惑。我已经对这两个概念进行了一些搜索。但仍不清楚。 我自己做了一些测试:
entry: {
app: './src/app.js',
people: './src/people.js'
}
plugins:[
new MiniCssExtractPlugin({
filename: '[name].css',
chunkFilename: "[name].css"
})
// new WebpackBundleAnalyzer()
]
我的想法是: 这四行都是chunk,那什么是bundle呢?
【问题讨论】: