2022-10-06 09:15:30 +00:00
|
|
|
---
|
|
|
|
title: "nuxi info"
|
|
|
|
description: The info command logs information about the current or specified Nuxt project.
|
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/info.ts
|
|
|
|
size: xs
|
2022-10-06 09:15:30 +00:00
|
|
|
---
|
|
|
|
|
2024-12-18 10:29:56 +00:00
|
|
|
<!--info-cmd-->
|
2023-10-18 10:59:43 +00:00
|
|
|
```bash [Terminal]
|
2024-12-18 10:29:56 +00:00
|
|
|
npx nuxi info [ROOTDIR] [--cwd=<directory>]
|
2022-04-06 05:56:08 +00:00
|
|
|
```
|
2024-12-18 10:29:56 +00:00
|
|
|
<!--/info-cmd-->
|
2022-04-06 05:56:08 +00:00
|
|
|
|
2022-04-16 13:53:36 +00:00
|
|
|
The `info` command logs information about the current or specified Nuxt project.
|
2022-04-06 05:56:08 +00:00
|
|
|
|
2024-12-18 10:29:56 +00:00
|
|
|
## Arguments
|
|
|
|
|
|
|
|
<!--info-args-->
|
|
|
|
Argument | Description
|
|
|
|
--- | ---
|
|
|
|
`ROOTDIR="."` | Specifies the working directory (default: `.`)
|
|
|
|
<!--/info-args-->
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
<!--info-opts-->
|
|
|
|
Option | Default | Description
|
|
|
|
--- | --- | ---
|
|
|
|
`--cwd=<directory>` | | Specify the working directory, this takes precedence over ROOTDIR (default: `.`)
|
|
|
|
<!--/info-opts-->
|