webpack/test/configCases/defer-import/defer-runtime/webpack.config.js

12 lines
259 B
JavaScript

/** @type {import("../../../../").Configuration} */
module.exports = {
target: [`async-node${process.versions.node.split(".").map(Number)[0]}`],
entry: ["./all.js"],
optimization: {
concatenateModules: false
},
experiments: {
deferImport: true
}
};