# nuxt3-template **Repository Path**: webMa/nuxt3-template ## Basic Information - **Project Name**: nuxt3-template - **Description**: Nuxt3 框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 如果有问题可以发到 issues 看到会回复 master 是自己在用 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: V3.17.5 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 35 - **Forks**: 12 - **Created**: 2023-11-30 - **Last Updated**: 2025-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: nuxt3, TypeScript, Vue ## README

🔥🔥🔥Nuxt3 项目模板🔥🔥🔥

--- ## 项目介绍 Nuxt3框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 ### 环境要求 - Node.js v20+ ## Nuxt 3 项目启动 查看[Nuxt3 文档](https://nuxt.com/docs/getting-started/introduction)了解更多信息 ### 安装 安装项目依赖: ```bash # npm npm install # pnpm pnpm install # yarn yarn install # bun bun install ``` ### 开发服务器 启动本地开发环境 `http://localhost:3000`: ```bash # npm npm run dev # pnpm pnpm run dev # yarn yarn dev # bun bun run dev ``` ### 生产环境 打包生产环境: ```bash # npm npm run build # pnpm pnpm run build # yarn yarn build # bun bun run build ``` 本地运行预览生产版本: ```bash # npm npm run preview # pnpm pnpm run preview # yarn yarn preview # bun bun run preview ``` 升级nuxt版本: ```bash npx nuxi upgrade --force ``` 查看[部署文档](https://nuxt.com/docs/getting-started/deployment)了解更多信息。