NuxtをDockerで起動する際にNuxtJS collects completely anonymous data about usageが出て起動しない

Posted on 2020/06/29

TOC

事象

NuxtのプロジェクトをDockerで起動する際に以下が表示されて起動しなくなる。 ※ nuxt_utils_collectionはコンテナ名

Attaching to nuxt_utils_collection
nuxt_utils_collection | 
nuxt_utils_collection | > NuxtUtilsCollection@1.0.0 dev /app
nuxt_utils_collection | > nuxt-ts
nuxt_utils_collection | 
nuxt_utils_collection | 
nuxt_utils_collection | ℹ NuxtJS collects completely anonymous data about usage.
nuxt_utils_collection |   This will help us improving Nuxt developer experience over the time.
nuxt_utils_collection |   Read more on https://git.io/nuxt-telemetry
nuxt_utils_collection | 

解決方法

nuxt.config.jsに以下を追記する。

export default {
  telemetry: false
}