Ivor

Results 12 comments of Ivor

Puppeteer doesn't work on Vercel https://github.com/vercel/next.js/issues/29997

I'm facing the exact same issue even after calling `resetServerContext()` correctly. ```javascript //__document.js import Document from "next/document"; import { ServerStyleSheet } from "styled-components"; import { resetServerContext } from "react-beautiful-dnd"; export...

@pjtf93 I solved it by returning the `DragDropContext` only if `process.browser` is true. ```jsx { process.browser ? ... : null } ```

@medihack Is not ugly if you don't care about the DnD being SSR'd. What's wrong with it?

You need two things, the `ClientRouter` component and `RoutePropagator` ```javascript import React from 'react'; import { withRouter } from 'next/router'; import { ClientRouter as AppBridgeClientRouter } from '@shopify/app-bridge-react'; function ClientRouter(props)...

I just had the same issue with Linode. Prisma runs on Java and it collapsed my 1GB RAM server. I resized my Linode to 2GB but the support guy (thanks...

Yeah it'd be pretty nice if we could pass some headers down our custom fetcher. At this moment this is not possible.

Another solution: ```javascript const [isBrowser, setIsBrowser] = useState(false); useEffect(() => { setCanRender(process.browser); }, []) function Home() { return( {isBrowser ? { /* all rbd code */ } : null} )...

Please merge this @Nutlope @privatenumber 🙏