mirror of https://github.com/webpack/webpack.git
15 lines
263 B
JavaScript
15 lines
263 B
JavaScript
|
var webpack = require("../../../../");
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
new webpack.optimize.CommonsChunkPlugin({
|
||
|
chunks: ["a+b", "a+b+c"],
|
||
|
async: "a+b",
|
||
|
}),
|
||
|
new webpack.optimize.CommonsChunkPlugin({
|
||
|
chunks: ["a", "a+b"],
|
||
|
async: "a",
|
||
|
}),
|
||
|
]
|
||
|
};
|