-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
extension crash on boot using RecoilizeDebugger #141
Comments
I am seeing the same thing |
same here |
Same here aswell. |
Ditto |
1 similar comment
Ditto |
I am using Next, and i try: //If your application uses Next.js modify the _app.js as follows
import dynamic from 'next/dynamic';
import { useEffect, useState } from 'react';
import { RecoilRoot } from 'recoil';
function MyApp({ Component, pageProps }) {
const [root, setRoot] = useState(null)
const RecoilizeDebugger = dynamic(
() => {
return import('recoilize');
},
{ ssr: false}
);
useEffect(() => {
if (typeof window.document !== 'undefined') {
setRoot(document.getElementById('__next'));
}
}, [root]);
return (
<>
<RecoilRoot>
<RecoilizeDebugger root = {root}/>
<Component {...pageProps} />
</RecoilRoot>
</>
);
}
export default MyApp; But not resolved. |
Thank you for your interest and your patience! Until everything gets cleared up, please use following steps to load the unpacked extension:
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Recoil crashes immediately and chrome extension fails (needs to be reloaded).
The text was updated successfully, but these errors were encountered: