Files
gil 5f664546cf feat: 위키 저장소 초기 커밋
- CLAUDE.md 운영 규칙
- wiki/ 정리된 지식 페이지 (Nuxt + Claude Code)
- raw/ 원본 자료
- reference/ Nuxt 4.x 공식 문서

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-13 00:31:51 +09:00

1.1 KiB

title, description, head.title, navigation.icon
title description head.title navigation.icon
nuxt.config.ts Nuxt can be easily configured with a single nuxt.config file. nuxt.config.ts i-vscode-icons-file-type-nuxt

The nuxt.config file extension can either be .js, .ts or .mjs.

export default defineNuxtConfig({
  // My Nuxt config
})

::tip defineNuxtConfig helper is globally available without import. ::

You can explicitly import defineNuxtConfig from nuxt/config if you prefer:

import { defineNuxtConfig } from 'nuxt/config'

export default defineNuxtConfig({
  // My Nuxt config
})

::read-more{to="/docs/4.x/api/configuration/nuxt-config"} Discover all the available options in the Nuxt configuration documentation. ::

To ensure your configuration is up to date, Nuxt will make a full restart when detecting changes in the main configuration file, the .env, .nuxtignore and .nuxtrc dotfiles.