# nuxt3-template **Repository Path**: firefly0_0/nuxt3-template ## Basic Information - **Project Name**: nuxt3-template - **Description**: Nuxt3 框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 如果有问题可以发到 issues 看到会回复 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 14 - **Created**: 2025-03-12 - **Last Updated**: 2025-03-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

🔥🔥🔥Nuxt3 项目模板🔥🔥🔥

--- ## 项目介绍 Nuxt3框架模板,只要Nuxt3官网更新就会跟着更新,安装不了的小伙伴可以直接拉取 - [![code style](https://antfu.me/badge-code-style.svg)](https://github.com/antfu/eslint-config) ### 环境要求 - Node.js v18.0.0以上 ## 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)了解更多信息。