Files
Cloud-Home/.gitignore
RhenCloud f80e5c0b5a feat: 初始化项目
- 初始化 Vue 3 + Vite 项目结构
- 添加核心组件 (Hero, About, Projects, Friends 等)
- 配置页面路由和基础样式
- 添加服务端 API 接口 (邮件发送, 好友请求)
- 添加项目配置文件 (vercel.json, vite.config.js)
2025-12-06 23:39:15 +08:00

36 lines
362 B
Plaintext

# dependencies
node_modules/
pnpm-lock.yaml
package-lock.json
yarn.lock
# builds
dist/
build/
.out/
.next/
.vercel/
.vite/
# env & secrets
.env
.env.*
!.env.example
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
logs/
*.log
# editors & system
.vscode/
.idea/
.DS_Store
Thumbs.db
# tests
tests/
test*