# ittool-plus-react **Repository Path**: mr_jianlong/ittool-plus-react ## Basic Information - **Project Name**: ittool-plus-react - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-05 - **Last Updated**: 2026-01-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README [TOC] `@umijs/max` 模板项目,更多功能参考 [Umi Max 简介](https://umijs.org/docs/max/introduce) ## 常用命令 ```bash # 安装依赖 pnpm install # 启动项目 pnpm dev # 构建项目 pnpm build # 构建项目时,增加内存限制 NODE_OPTIONS=--max-old-space-size=1024 pnpm build # 生成 tailwindcss 配置文件 npx max g tailwindcss npm install react-rnd # 无需再保留 react-draggable 和 react-resizable,可卸载 npm uninstall react-draggable react-resizable ``` ## 常用提交类型(type) 前端项目中高频使用的有: ```bash feat: 新增功能(会体现在 CHANGELOG 的新增功能里) fix: 修复 bug(会体现在 CHANGELOG 的修复内容里) docs: 仅修改文档(如 README、注释) style: 仅格式修改(如缩进、空格、Prettier 格式化,不影响代码逻辑) refactor: 重构代码(既不是新增功能,也不是修复 bug) test: 添加 / 修改测试用例 chore: 构建流程、工具配置等杂项修改(如修改 husky 配置、依赖版本) perf: 性能优化 revert: 回滚之前的提交 ```