# nuxt-test **Repository Path**: javanis/nuxt-test ## Basic Information - **Project Name**: nuxt-test - **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-09-30 - **Last Updated**: 2025-09-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Nuxt 4.1 Project Framework 一个功能齐全的Nuxt 4.1项目模板,包含多种常用模块和最佳实践配置。 ## 网络连接注意事项 **⚠️ 重要提示:** 在开发过程中,您可能会看到`Could not fetch from https://fonts.google.com/metadata/...`的警告信息。 这是由于@nuxt/ui模块尝试从Google Fonts获取字体和图标元数据时遇到的网络连接问题。 我们已经在`nuxt.config.ts`中配置了@nuxt/ui使用系统字体和本地图标,以减轻这些警告。 ## Setup Make sure to install dependencies: ```bash # npm npm install # pnpm pnpm install # yarn yarn install # bun bun install ``` ## Development Server Start the development server on `http://localhost:3000`: ```bash # npm npm run dev # pnpm pnpm dev # yarn yarn dev # bun bun run dev ``` ## Production Build the application for production: ```bash # npm npm run build # pnpm pnpm build # yarn yarn build # bun bun run build ``` Locally preview production build: ```bash # npm npm run preview # pnpm pnpm preview # yarn yarn preview # bun bun run preview ``` Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.