mirror of https://github.com/webpack/webpack.git
14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
target: "web",
|
||
|
mode: "development",
|
||
|
devtool: false,
|
||
|
output: {
|
||
|
pathinfo: true,
|
||
|
cssChunkFilename: "[name].[chunkhash].css"
|
||
|
},
|
||
|
experiments: {
|
||
|
css: true
|
||
|
}
|
||
|
};
|