Rechau
Cannot start nuxt: Cannot convert undefined or null to object
After more investigation if you are using npm you need to disable dev tools. If you are using yarn then devtools work. It's a package manager issue. All of this depends on nuxt and npm versions. Gave up for now since there are more issues like not working type check with nuxi and who knows what else.
8 replies
Cannot start nuxt: Cannot convert undefined or null to object
Looks like I solved this issue. It's caused by devtools. By disabling it in nuxt.config.ts
devtools: {enabled: false}
it works and runs dev server. So there is some sort of a bug in devtools which is not letting dev server to spin up.8 replies