如何在开发中为热重载启用 nuxt 构建指示器

How enable nuxt build indicator for hot reload in development

我想在我的应用程序开发中看到 Nuxt.js 热重载进度指示器 (https://nuxtjs.org/api/configuration-build/#indicator),但直到我的应用程序开发开始我才看到它。我将我的 Nuxt 版本升级到最新的 2.12.2,但我仍然没有。 谁能帮我看看是什么原因?

你的 nuxt.config.js 长什么样?加载指标为on by default,但可以通过指标属性控制(nuxt.config.js > build > indicator)

我明白了。我没有它,因为我在 package.json:

中通过此命令 运行 nuxt

"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server"

当我只使用 "dev": "nuxt" 时,我有我的热重载构建指示器:)