# nuxt **Repository Path**: kawaii3333/nuxt ## Basic Information - **Project Name**: nuxt - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-18 - **Last Updated**: 2025-07-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nuxt Minimal Starter Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. ## Setup ```bash pnpm install ``` ## Development Server Start the development server on `http://localhost:3000`: ```bash pnpm dev ``` ## Production Build the application for production: ```bash pnpm build ``` # Nuxt 3 [项目目录结构详解](https://nuxt.com.cn/docs/guide/directory-structure/nuxt) ``` ├── .nuxt/ # [自动生成] Nuxt 构建输出目录 ├── .output/ # [自动生成] Nuxt 生产构建输出目录 ├── public/ # 存储静态资源,文件会被直接复制到构建输出的根目录 ├── assets/ # 需要编译的资源文件 (样式、字体、图片) ├── components/ # 组件目录(自动导入) ├── composables/ # 组合式函数(自动导入) ├── layouts/ # 布局模板 ├── pages/ # 页面路由(自动生成路由) │ └── index.vue # 首页 / ├── plugins/ # Vue 插件 │ └── i18n.ts # 国际化插件 ├── server/ # 服务端目录 │ └── api/ # API 路由 │ └── middleware/ # 服务端中间件 ├── utils/ # 通用工具函数(自动导入) ├── app.config.ts # 运行时公共配置,可通过 `useAppConfig()` 访问 ├── app.vue # 主应用入口,必须包含 `` 组件 ├── nuxt.config.ts # Nuxt 配置文件,包括模块、插件、构建选项等 ├── package.json ├── tsconfig.json # TypeScript 配置 └── .env # 环境变量 ```