mirror of https://github.com/webpack/webpack.git
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
|
/** @type {import("../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
mode: "production",
|
||
|
entry: {
|
||
|
entry1: "./entry-1.js",
|
||
|
entry2: "./entry-2.js",
|
||
|
entry3: "./entry-3.js"
|
||
|
}
|
||
|
};
|