feat: 위키 저장소 초기 커밋

- CLAUDE.md 운영 규칙
- wiki/ 정리된 지식 페이지 (Nuxt + Claude Code)
- raw/ 원본 자료
- reference/ Nuxt 4.x 공식 문서

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
gil
2026-05-13 00:31:51 +09:00
commit 5f664546cf
275 changed files with 35154 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
title: "nuxt analyze"
description: "Analyze the production bundle or your Nuxt application."
links:
- label: Source
icon: i-simple-icons-github
to: https://github.com/nuxt/cli/blob/main/packages/nuxi/src/commands/analyze.ts
size: xs
---
<!--analyze-cmd-->
```bash [Terminal]
npx nuxt analyze [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--dotenv] [-e, --extends=<layer-name>] [--name=<name>] [--no-serve]
```
<!--/analyze-cmd-->
The `analyze` command builds Nuxt and analyzes the production bundle (experimental).
## Arguments
<!--analyze-args-->
| Argument | Description |
|---------------|------------------------------------------------|
| `ROOTDIR="."` | Specifies the working directory (default: `.`) |
<!--/analyze-args-->
## Options
<!--analyze-opts-->
| Option | Default | Description |
|--------------------------------------|-----------|----------------------------------------------------------------------------------|
| `--cwd=<directory>` | | Specify the working directory, this takes precedence over ROOTDIR (default: `.`) |
| `--logLevel=<silent\|info\|verbose>` | | Specify build-time log level |
| `--dotenv` | | Path to `.env` file to load, relative to the root directory |
| `-e, --extends=<layer-name>` | | Extend from a Nuxt layer |
| `--name=<name>` | `default` | Name of the analysis |
| `--no-serve` | | Skip serving the analysis results |
<!--/analyze-opts-->
::note
This command sets `process.env.NODE_ENV` to `production`.
::