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 6c017eb commit 2132c30Copy full SHA for 2132c30
lib/Server.js
@@ -672,6 +672,7 @@ class Server {
672
typeof client.overlay === "boolean"
673
? String(client.overlay)
674
: JSON.stringify({
675
+ ...client.overlay,
676
errors: encodeOverlaySettings(client.overlay.errors),
677
warnings: encodeOverlaySettings(client.overlay.warnings),
678
runtimeErrors: encodeOverlaySettings(
@@ -2656,6 +2657,7 @@ class Server {
2656
2657
"overlay",
2658
typeof overlayConfig === "object"
2659
? {
2660
+ ...overlayConfig,
2661
errors:
2662
overlayConfig.errors &&
2663
encodeOverlaySettings(overlayConfig.errors),
0 commit comments