fix(nuxi): always use the latest devtools wizard (#21291)

This commit is contained in:
Anthony Fu 2023-05-31 18:14:28 +02:00 committed by GitHub
parent f824116fa0
commit 7512a52488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,6 @@ export default defineNuxtCommand({
process.exit(1) 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 })
} }
}) })