docs: add example for stats none output

This commit is contained in:
Sachin Kumar 2023-07-30 06:39:09 +05:30
parent ff65af6e8a
commit 90aa8901ec
2 changed files with 3 additions and 5 deletions

View File

@ -18,7 +18,7 @@ module.exports = {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "minimal"
stats: "none"
};
```
@ -43,7 +43,5 @@ console.log("Hello World!");
## Production mode
```
1 asset
1 module
webpack 5.88.1 compiled successfully
```

View File

@ -5,5 +5,5 @@ module.exports = {
path: path.join(__dirname, "dist"),
filename: "output.js"
},
stats: "minimal"
stats: "none"
};