mirror of https://github.com/webpack/webpack.git
12 lines
154 B
JavaScript
12 lines
154 B
JavaScript
|
module.exports = {
|
||
|
mode: "development",
|
||
|
entry: "./index.js",
|
||
|
output: {
|
||
|
filename: "[contenthash].js"
|
||
|
},
|
||
|
stats: {
|
||
|
all: false,
|
||
|
assets: true
|
||
|
}
|
||
|
};
|