mirror of https://github.com/webpack/webpack.git
12 lines
216 B
JavaScript
12 lines
216 B
JavaScript
|
var path = require("path");
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
pageA: "./pageA",
|
||
|
pageB: "./pageB"
|
||
|
},
|
||
|
output: {
|
||
|
path: path.join(__dirname, "js"),
|
||
|
filename: "[name].bundle.js",
|
||
|
chunkFilename: "[id].chunk.js"
|
||
|
}
|
||
|
}
|