mirror of https://github.com/webpack/webpack.git
20 lines
315 B
JavaScript
20 lines
315 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
devtool: false,
|
|
output: {
|
|
cssFilename: "[name].css",
|
|
cssChunkFilename: "[name].css"
|
|
},
|
|
experiments: {
|
|
css: true,
|
|
lazyCompilation: {
|
|
entries: false,
|
|
imports: true
|
|
}
|
|
},
|
|
node: {
|
|
__dirname: false
|
|
}
|
|
};
|