0
The issue is related to Telemetry.
Nuxt collects anonymous telemetry data about general usage. This helps us to accurately gauge Nuxt feature usage and customization across all our users.
Resolved via disabling telemetry in nuxt.config
. Or in nuxt.config.ts
if you’re using Nuxt 3.
nuxt.config
export default {
telemetry: false
}
nuxt.config.ts
export default defineNuxtConfig({
telemetry: false
})
Hope this helps!
This issue doesn’t occur to me with a freshly-created Nuxt project. But when I clone an existing project, or move the project to some other directory – I start getting these errors.
I can’t seem to find docs (or some hacks) to establish Telemetry for a ‘copied’ project – so, at the moment, the only way to get over this problem is to disable Telemetry.
Source:stackexchange.com