# blog-client-next **Repository Path**: SongTaoo/blog-client ## Basic Information - **Project Name**: blog-client-next - **Description**: 基于nextjs重构个人博客web端 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-05 - **Last Updated**: 2025-10-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README read: https://nextjs.org/docs/getting-started/project-structure ### Top-level folders app App Router pages Pages Router public Static assets to be served src Optional application source folder Top-level files Top-level files are used to configure your application, manage dependencies, run middleware, integrate monitoring tools, and define environment variables. ### Next.js next.config.js Configuration file for Next.js package.json Project dependencies and scripts instrumentation.ts OpenTelemetry and Instrumentation file middleware.ts Next.js request middleware .env Environment variables .env.local Local environment variables .env.production Production environment variables .env.development Development environment variables .eslintrc.json Configuration file for ESLint .gitignore Git files and folders to ignore next-env.d.ts TypeScript declaration file for Next.js tsconfig.json Configuration file for TypeScript jsconfig.json Configuration file for JavaScript ### commit 规则 git commit -m [optional scope]: //注意冒号后面有空格 - type:提交的类型(如新增、修改、更新等) - optional scope:涉及的模块,可选 - description:任务描述 # 功能类别列表 | 类别 | 含义 | | -------- | ---------------------------------------- | | feat | 新功能 | | fix | 修复 bug | | style | 样式修改(UI 校验) | | docs | 文档更新 | | refactor | 重构代码(既没有新增功能,也没有修复 bug) | | perf | 优化相关,比如提升性能、体验 | | test | 增加测试,包括单元测试、集成测试等 | | build | 构建系统或外部依赖项的更改 | | ci | 自动化流程配置或脚本修改 | | revert | 回退某个 commit 提交 |