mirror of https://github.com/webpack/webpack.git
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
entry: "./index.mjs",
|
||
|
output: { iife: false },
|
||
|
optimization: { concatenateModules: true }
|
||
|
};
|