-
-
Notifications
You must be signed in to change notification settings - Fork 92
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
extension crash on boot using RecoilizeDebugger #141
Comments
recursiveElk
changed the title
extension cradh
extension crash on boot using RecoilizeDebugger
Sep 22, 2021
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:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recoil crashes immediately and chrome extension fails (needs to be reloaded).
The text was updated successfully, but these errors were encountered: