We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cd69e7 commit 3e08befCopy full SHA for 3e08bef
tutorials/webpack-common-chunk/webpack.config.js
@@ -93,7 +93,7 @@ module.exports = {
93
94
//http://stackoverflow.com/questions/35908253/webpack-how-to-bundle-entries-to-multiple-common-chunks-with-commonschunkplugin
95
plugins: [
96
- //vender不经常变化,为了使用缓存,通过指定chunks把它单独弄出来,init包含webpack runtime和其他公共模块
+ //vendor不经常变化,为了使用缓存,通过指定chunks把它单独弄出来,init包含webpack runtime和其他公共模块
97
new webpack.optimize.CommonsChunkPlugin({
98
name: "vendor",
99
chunks: ["vendor"]
0 commit comments