From 7512a52488ac614d7c52ceecd260bb4db29b58fd Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Wed, 31 May 2023 18:14:28 +0200 Subject: [PATCH] fix(nuxi): always use the latest devtools wizard (#21291) --- packages/nuxi/src/commands/devtools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxi/src/commands/devtools.ts b/packages/nuxi/src/commands/devtools.ts index 2abb64cb10..9b3e3998cd 100644 --- a/packages/nuxi/src/commands/devtools.ts +++ b/packages/nuxi/src/commands/devtools.ts @@ -19,6 +19,6 @@ export default defineNuxtCommand({ process.exit(1) } - await execa('npx', ['@nuxt/devtools-wizard', command, rootDir], { stdio: 'inherit', cwd: rootDir }) + await execa('npx', ['@nuxt/devtools-wizard@latest', command, rootDir], { stdio: 'inherit', cwd: rootDir }) } })