-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ResizeObserver loop limit exceeded in Chromium browsers #4804
Comments
Sorry, it works as expected, please read #4771, you can disable runtimes errors |
Release 8.1.1 - disable `runtimeErrors` in webpack-dev-server overlay by redbugz · Pull Request #336 · fs-webdev/create-react-app (github.com)<fs-webdev/create-react-app#336> refers to a new setting “client.overlay.runtimeErrors” but no clue as to where that setting is to be set. E.g. what file has this setting in it, someplace in webpack.js?
Tim Hoffmann
Sr. Software Engineer
FM:Systems
From: Alexander Akait ***@***.***>
Sent: Wednesday, April 5, 2023 12:30 PM
To: webpack/webpack-dev-server ***@***.***>
Cc: Timothy Hoffmann ***@***.***>; Author ***@***.***>
Subject: Re: [webpack/webpack-dev-server] ResizeObserver loop limit exceeded in Chromium browsers (Issue #4804)
CAUTION [This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe]
Sorry, it works as expected, please read #4771<#4771>, you can disable runtimes errors
—
Reply to this email directly, view it on GitHub<#4804 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGZZJPZ5Z4W4CNOBANL46UDW7WMZXANCNFSM6AAAAAAWUGR24I>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
|
Ok, dug through the source code and found it. It’s in the webpack.js file with this hierarchy:
module.exports = {
devServer: {
client: {
overlay: {
errors: true,
warnings: false,
runtimeErrors: false,
},
},
},
Tim Hoffmann
Sr. Software Engineer
FM:Systems
From: Alexander Akait ***@***.***>
Sent: Wednesday, April 5, 2023 12:30 PM
To: webpack/webpack-dev-server ***@***.***>
Cc: Timothy Hoffmann ***@***.***>; Author ***@***.***>
Subject: Re: [webpack/webpack-dev-server] ResizeObserver loop limit exceeded in Chromium browsers (Issue #4804)
CAUTION [This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe]
Sorry, it works as expected, please read #4771<#4771>, you can disable runtimes errors
—
Reply to this email directly, view it on GitHub<#4804 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGZZJPZ5Z4W4CNOBANL46UDW7WMZXANCNFSM6AAAAAAWUGR24I>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
|
If you don't need overlay you can use this:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
Starting with version 4.12.0 and newer, my React app is showing "ResizeObserver loop limit exceeded". Works fine with 4.11.
Edge versions 111.0.1661.62 & 114.0.1777.0 fail
Chrome version 114.0.5696.0 & 111.0.5563.147 fail
Vivaldi version 5.7.2921.65 fail
Firefox 113.0a1 (2023-04-05) works fine
Actual Behavior
Expected Behavior
Error should not happen.
How Do We Reproduce?
Failure line is
var errorObject = error instanceof Error ? error : new Error(error || message);
Please paste the results of
npx webpack-cli info
here, and mention other relevant informationThe text was updated successfully, but these errors were encountered: