Skip to content
Advertisement

ReferenceError: FileReader is not defined in Next.js

I am trying out the new functions of Next.js 13 with the /app folder, but in a simple client-side component that handles an input form, I am trying to use FileReader but receive an error when browsing.

This is the summary of the code:

JavaScript

Error:

JavaScript

What am I doing wrong?

Advertisement

Answer

Like accessing window, any browser-specific code in Next.js needs to run on the client. If you want to use FileReader, which is part of the browser API, add it to your useEffect, like so:

JavaScript

This way, Next.js won’t look for the definition of a FileReader while building your component, which is causing your current error.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement