添加项目基础文件结构、路由配置、API接口和核心组件 实现登录认证、权限控制、WebSocket通信等基础功能 引入antd-mobile UI组件库和Vite构建工具 配置TypeScript、ESLint、Prettier等开发环境 添加移动端适配方案和全局样式 完成首页、工作台、个人中心等基础页面框架
28 lines
485 B
Plaintext
28 lines
485 B
Plaintext
# 设置默认行为,如果core.autocrlf没有设置,Git会自动处理行尾符
|
||
* text=auto
|
||
|
||
# 明确指定文本文件使用LF
|
||
*.js text eol=lf
|
||
*.jsx text eol=lf
|
||
*.ts text eol=lf
|
||
*.tsx text eol=lf
|
||
*.json text eol=lf
|
||
*.css text eol=lf
|
||
*.scss text eol=lf
|
||
*.html text eol=lf
|
||
*.md text eol=lf
|
||
*.yml text eol=lf
|
||
*.yaml text eol=lf
|
||
|
||
# 二进制文件
|
||
*.png binary
|
||
*.jpg binary
|
||
*.jpeg binary
|
||
*.gif binary
|
||
*.ico binary
|
||
*.svg binary
|
||
*.woff binary
|
||
*.woff2 binary
|
||
*.ttf binary
|
||
*.eot binary
|