We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c55ba commit a4ed8a1Copy full SHA for a4ed8a1
README.md
@@ -144,6 +144,24 @@ module.exports = {
144
};
145
```
146
147
+### Stats
148
+
149
+By default, the plugin will print a quite verbose bundle information to your console. However, if
150
+you are not satisfy with the current output info, you can overwrite it in your `webpack.config.js`
151
152
+```js
153
+// webpack.config.js
154
155
+module.export = {
156
+ // ...
157
+ stats: 'minimal'
158
159
+}
160
+```
161
162
+All the stats config can be found in [webpack's documentation](https://webpack.js.org/configuration/stats/)
163
164
165
### Node modules / externals
166
167
By default, the plugin will try to bundle all dependencies. However, you don't
0 commit comments