Skip to content
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

Next.js - ReferenceError: window is not defined #36

Open
dongorous opened this issue Jun 22, 2021 · 2 comments
Open

Next.js - ReferenceError: window is not defined #36

dongorous opened this issue Jun 22, 2021 · 2 comments

Comments

@dongorous
Copy link

No description provided.

@ptsteadman
Copy link

ptsteadman commented Sep 16, 2021

I got things to work with:

import dynamic from 'next/dynamic'

const DeviceOrientation = dynamic(() => import('react-screen-orientation'), { ssr: false })
const Orientation = dynamic(() => import('react-screen-orientation').then((module) => module.Orientation), { ssr: false })

It gives a failed prop warning though, would be interested in a cleaner solution

@yasinsd2020
Copy link

Than q broo it's work for me
import dynamic from 'next/dynamic'

const DeviceOrientation = dynamic(() => import('react-screen-orientation'), { ssr: false })
const Orientation = dynamic(() => import('react-screen-orientation').then((module) => module.Orientation), { ssr: false })

but imp point is we have to write outside the function

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants