nuxt/example-auth0

ReferenceError: window is not defined

findingorder opened this issue · 3 comments

When I try to clone and 'npm run dev' this project, it seems to build and launch just fine. But when I navigate to localhost:3000, I get the error "ReferenceError: window is not defined". The offending line of code is server-bundle.js line 3538, "const json = window.localStorage.user;". Call stack is:

server-bundle.js:3538:16 getUserFromLocalStorage
server-bundle.js:2341:185
server-bundle.js:1630:15 promisify
server-bundle.js:1609:10 middlewareSeries
server-bundle.js:1125:72

How can I make this work?

This question is available on Nuxt community (#c27)

This issue as been imported as question since it does not respect example-auth0 issue template. Only bug reports and feature requests stays open to reduce maintainers workload.
If your issue is not a question, please mention the repo admin or moderator to change its type and it will be re-opened automatically.
Your question is available at https://cmty.app/nuxt/example-auth0/issues/c27.

My issue is not a question, it is a bug report!

add mode:spa will fix the problem

nuxt.config.js

module.exports = {
  mode: 'spa',
	...
}