2023-02-09 14:02:59 +00:00
---
title: "nuxi devtools"
2023-04-04 13:23:13 +00:00
description: The devtools command allows you to enable or disable Nuxt DevTools on a per-project basis.
2023-10-18 10:59:43 +00:00
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/cli/blob/main/src/commands/devtools.ts
size: xs
2023-02-09 14:02:59 +00:00
---
2024-12-18 10:29:56 +00:00
<!-- devtools - cmd -->
2023-10-18 10:59:43 +00:00
```bash [Terminal]
2024-12-18 10:29:56 +00:00
npx nuxi devtools < COMMAND > [ROOTDIR] [--cwd=< directory > ]
2023-02-09 14:02:59 +00:00
```
2024-12-18 10:29:56 +00:00
<!-- /devtools - cmd -->
2023-02-09 14:02:59 +00:00
Running `nuxi devtools enable` will install the Nuxt DevTools globally, and also enable it within the particular project you are using. It is saved as a preference in your user-level `.nuxtrc` . If you want to remove devtools support for a particular project, you can run `nuxi devtools disable` .
2024-12-18 10:29:56 +00:00
## Arguments
2023-02-09 14:02:59 +00:00
2024-12-18 10:29:56 +00:00
<!-- devtools - args -->
Argument | Description
--- | ---
`COMMAND` | Command to run (options: < enable \|disable > )
`ROOTDIR="."` | Specifies the working directory (default: `.` )
<!-- /devtools - args -->
## Options
<!-- devtools - opts -->
Option | Default | Description
--- | --- | ---
`--cwd=<directory>` | | Specify the working directory, this takes precedence over ROOTDIR (default: `.` )
<!-- /devtools - opts -->
::read-more{icon="i-simple-icons-nuxtdotjs" to="https://devtools.nuxt.com" target="\_blank"}
2023-10-18 10:59:43 +00:00
Read more about the **Nuxt DevTools** .
2023-02-09 14:02:59 +00:00
::