mirror of https://github.com/webpack/webpack.git
16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
|
var webpack = require("../../../");
|
||
|
|
||
|
module.exports = {
|
||
|
mode: "production",
|
||
|
entry: "./entry.js",
|
||
|
output: {
|
||
|
filename: "bundle.js"
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.DllReferencePlugin({
|
||
|
manifest: __dirname + "/blank-manifest.json",
|
||
|
name: "blank-manifest"
|
||
|
})
|
||
|
]
|
||
|
};
|