Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions web/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ const config: Configuration = {
devMiddleware: {
writeToDisk: true,
},
client: {
overlay: {
runtimeErrors: (error) => {
// This benign browser error is triggered by ResizeObserver callbacks that cause
// layout changes within the same frame. It does not indicate a real problem.
if (error.message === 'ResizeObserver loop completed with undelivered notifications.') {
return false;
}
return true;
},
},
},
},
plugins: [
new ConsoleRemotePlugin(),
Expand Down