JulianMar / nuxt-bugsnag

Bugsnag module for nuxt.js
MIT License
49 stars 18 forks source link

TypeError: Cannot set properties of undefined (setting '_user') #55

Closed mirash333 closed 1 year ago

mirash333 commented 1 year ago

Reproducing link: https://stackblitz.com/edit/github-vk16hl?file=node_modules%2Fnuxt-bugsnag%2Fdist%2Fruntime%2Fclient%2Fcomposables%2FuseBugsnag.mjs

JulianMar commented 1 year ago

I think the issue is, that the destructured functions are referencing the bugsnag instance created on the server side. I would recommend to not destructure these methods and it will work.

mirash333 commented 1 year ago

I noticed it too, thanks!