We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The docs mention that lazy hydration is implemented with requestIdleCallback but no version of safari supports this: https://caniuse.com/?search=requestIdleCallback
requestIdleCallback
Does the framework adjust its behavior when running on safari or should we avoid using this option if we want to target iOS/Mac?
The text was updated successfully, but these errors were encountered:
Interested to hear about this as well.
Sorry, something went wrong.
I think they use a simple polyfill for that, by looking at the code:
const requestIdleCallback = window.requestIdleCallback || ( cb => window.setTimeout(cb,1) );
No branches or pull requests
The docs mention that lazy hydration is implemented with
requestIdleCallback
but no version of safari supports this: https://caniuse.com/?search=requestIdleCallbackDoes the framework adjust its behavior when running on safari or should we avoid using this option if we want to target iOS/Mac?
The text was updated successfully, but these errors were encountered: