feat(front): add Tailwind CSS styles, components configuration, and utility functions for improved UI

This commit is contained in:
keven1024
2025-04-13 15:14:37 +08:00
parent 95ae86a7fd
commit f996535e51
11 changed files with 943 additions and 65 deletions

20
front/components.json Normal file
View File

@@ -0,0 +1,20 @@
{
"$schema": "https://shadcn-vue.com/schema.json",
"style": "new-york",
"typescript": true,
"tailwind": {
"config": "",
"css": "assets/css/main.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"composables": "@/composables",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib"
},
"iconLibrary": "lucide"
}