mirror of https://github.com/webpack/webpack.git
10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
|
var webpack = require("../../../../");
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
new webpack.optimize.CommonsChunkPlugin({
|
||
|
async: true
|
||
|
})
|
||
|
]
|
||
|
};
|