mvertopoulos / vue-msal

Vue plugin for using Microsoft Authentication Library (MSAL)
MIT License
123 stars 66 forks source link

Nuxt plugin: window is not defined #21

Open gretzke opened 4 years ago

gretzke commented 4 years ago

When using nuxt dont add '@/plugins/msal' to your nuxt.config.js, instead add { src: '@/plugins/msal', ssr: false }. It will not work when server-side rendered, as there is no window.

tschni commented 3 years ago

Alternatively, you can name the plugin file msal.client.js, in which case it will only be executed on the client side.