ReferenceError: window is not defined
See original GitHub issueQ&A (please complete the following information)
- OS: macOS
- Browser: Chrome
- Version: 83.0.4103.97 (Official Build) (64-bit)
- Method of installation: yarn
- Swagger-UI version: âswagger-ui-reactâ: â^3.26.2â
- Swagger/OpenAPI version: N/A
Content & configuration
Didnât need any YAML
file to reproduce this.
Describe the bug youâre encountering
ReferenceError: window is not defined
I have experience this both with Next.js and Docusaurus.
To reproduceâŚ
Steps to reproduce the behavior:
yarn create next-app
- I choose âswagger-testâ as project name and Default templatecd swagger-test
yarn add swagger-ui-react
- Edit
index.js
to just serve SwaggerUI:
import SwaggerUI from "swagger-ui-react";
export default function Home() {
return (
<SwaggerUI />)
}
yarn dev
to start dev server- Compile error: ReferenceError: window is not defined
Expected behavior
Expect SwaggerUI to work with frameworks/libraries like Next.JS and Docusaurus that have server code where window isnât defined.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:6
- Comments:12 (3 by maintainers)
Top Results From Across the Web
How to solve "window is not defined" errors in React and Next.js
How to solve "window is not defined" errors in React and Next.js ¡ 1. First solution: typeof ¡ 2. Second solution: the useEffect...
Read more >How to solve Next.js window is not defined
ReferenceError: window is not defined is a pretty common error you may run into when using Next.js for the first time but don't...
Read more >referenceerror: window is not defined, how to solve
Here's how to fix the âreferenceerror: window is not definedâ error that you might have in Node.js or with a tool like Next.js....
Read more >How To Solve ReferenceError window is not defined in ...
Fixing a window is not defined error can be quite simple. In most cases, all you will need to do is wrap your...
Read more >[Solved] ReferenceError : window is not defined - ItsJavaScript
The ReferenceError : window is not defined error mainly occurs if you are using the window object in Node.js, React.js, Next.js.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@char0n youâre right the issue is SSR. I was able to solve this by disabling SSR and using
next.js
âs dynamic import.Standard
SwaggerUI
component inpages/docs/SwaggerUI.tsx
:Dynamically importing it in
pages/docs/index.tsx
:Here is also a helpful resource: https://codeconqueror.com/blog/next-js-disable-ssr
@luizcieslak I tried to use this UI into a Docusaurus project, error is the same âWindow is not definedâ