We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0428701 + cb5da28 commit 50a59a5Copy full SHA for 50a59a5
1 file changed
web/webpack.config.ts
@@ -69,6 +69,18 @@ const config: Configuration = {
69
devMiddleware: {
70
writeToDisk: true,
71
},
72
+ client: {
73
+ overlay: {
74
+ runtimeErrors: (error) => {
75
+ // This benign browser error is triggered by ResizeObserver callbacks that cause
76
+ // layout changes within the same frame. It does not indicate a real problem.
77
+ if (error.message === 'ResizeObserver loop completed with undelivered notifications.') {
78
+ return false;
79
+ }
80
+ return true;
81
+ },
82
83
84
85
plugins: [
86
new ConsoleRemotePlugin(),
0 commit comments