chore: 统一代码格式并配置开发工具
- 添加 ESLint 和 Prettier 配置以统一代码风格 - 配置项目级 TypeScript 设置 - 更新前后端依赖版本 - 修复代码格式问题(引号、分号、尾随逗号等) - 优化文件结构和导入路径
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
@import "tailwindcss";
|
||||
@import "@heroui/styles";
|
||||
@import 'tailwindcss';
|
||||
@import '@heroui/styles';
|
||||
|
||||
@theme {
|
||||
--color-brand: #C14B4B;
|
||||
--color-brand-foreground: #FFFFFF;
|
||||
|
||||
--color-brand: #c14b4b;
|
||||
--color-brand-foreground: #ffffff;
|
||||
|
||||
--radius-2xl: 1.25rem;
|
||||
--radius-3xl: 1.5rem;
|
||||
}
|
||||
@@ -22,6 +22,6 @@
|
||||
}
|
||||
|
||||
body {
|
||||
@apply bg-background text-foreground antialiased selection:bg-brand/20 selection:text-brand;
|
||||
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
||||
@apply bg-background text-foreground selection:bg-brand/20 selection:text-brand antialiased;
|
||||
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user