In my nuxt.js application I have a script that imports NPM packages that are only compatible with browser contexts (it references document
, location
, window
wait)
Is there a way to exclude it from SSR?
import thing from "@vendor/thing"; // causes `document not defined` error export default showThing(){ if (process.client) { thing(); } }
I can use the methods of process.client
but the file is still imported into my component.
You can import it dynamically instead of importing it in every context.
As explained in my answer here: https://stackoverflow.com/a/67825061/8816585
In your example, it would look like this