mirror of https://github.com/webpack/webpack.git
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
target: "web",
|
|
mode: "development",
|
|
output: {
|
|
filename: "bundle.[name].[contenthash].js",
|
|
cssFilename: "bundle.[name].[contenthash].css",
|
|
chunkFilename: "async.[name].[contenthash].js",
|
|
cssChunkFilename: "async.[name].[contenthash].css"
|
|
},
|
|
experiments: {
|
|
css: true
|
|
}
|
|
};
|