webpack/test/statsCases/immutable/webpack.config.js

15 lines
218 B
JavaScript

"use strict";
/** @type {import("../../../").Configuration} */
module.exports = {
mode: "development",
entry: "./index.js",
output: {
filename: "[contenthash].js"
},
stats: {
all: false,
assets: true
}
};