Hello everyone, I'm at my wits end with this error.
I have a branch that has been working forever and then doing npm install started triggering this error.
I'm not sure what to do - deduped Vue, checked for imports and combed the entire codebase. I can get it to work on stackblitz but not locally.
https://stackblitz.com/edit/nuxt-starter-igqupg?file=pages%2Findex.vue
If the button is SSR'd it will throw, if the button is wrapped in ClientOnly it will not.
It appears there's a problem with resolveComponent that throws in SSR.
It only throws if the button is added through the module and not if the button is imported through the npm package.
The module basically only registers components automatically from the npm package and has been working fine for a year up to today.
#SSR throws "Cannot read properties of null (reading 'isCE')" with resolveComponent
2 messages · Page 1 of 1 (latest)
GitHub
Version 3.2.2 Reproduction link https://github.com/fatawesome/vue-next-isce-issue Steps to reproduce Clone the repository, from root run yarn && lerna bootstrap && yarn start. Navig...