diff --git a/CHANGELOG.md b/CHANGELOG.md index 7af57d55..d5fadaf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## unreleased +### serve + +* Fixed to disable overlay for runtime errors. + ### test * Fixed `--watch` option is not working with the latest `jest-watch-typeahead` module. diff --git a/commands/serve.js b/commands/serve.js index 5c6d1f03..66a9789c 100755 --- a/commands/serve.js +++ b/commands/serve.js @@ -191,7 +191,8 @@ function devServerConfig(host, port, protocol, publicPath, proxy, allowedHost) { }, overlay: { errors: true, - warnings: false + warnings: false, + runtimeErrors: false } }, devMiddleware: {