I've installed JSEncrypt npm package for asymmetric encryption. But when I run the project I get the below error
Server Error ReferenceError: window is not defined
I even tried to dynamically load the JSEncrypt.min.js file in the project.
Can some one help resolving this?
Use dynamic import provided by Next.js. Import JSEncrypt only when you need to use it instead of importing it at the top of a module. The code below works for me.