Skip to content

Commit 93973ea

Browse files
authored
Merge branch 'master' into master
2 parents 2ae7064 + 4c233fa commit 93973ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/content/configuration/other-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ As it happens, the AMD support in webpack ignores the defined name anyways.
4848

4949
## `bail`
5050

51-
`boolean`
51+
`boolean = false`
5252

5353
Fail out on the first error instead of tolerating it. By default webpack will log these errors in red in the terminal, as well as the browser console when using HMR, but continue bundling. To enable it:
5454

src/content/configuration/stats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,15 +288,15 @@ module.exports = {
288288

289289
### `stats.entrypoints`
290290

291-
`boolean = false`
291+
`boolean = true`
292292

293293
Tells `stats` whether to display the entry points with the corresponding bundles.
294294

295295
```javascript
296296
module.exports = {
297297
//...
298298
stats: {
299-
entrypoints: true
299+
entrypoints: false
300300
}
301301
};
302302
```

0 commit comments

Comments
 (0)