mirror of
https://github.com/readest/readest.git
synced 2026-04-28 19:42:21 +00:00
Move Radix/shadcn-based UI primitives into a dedicated `components/primitives` directory to better reflect their low-level, composable nature. Imports remain ergonomic via an alias to `components/ui`. App-level components should continue to use PascalCase filenames.
22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "tailwind.config.ts",
|
|
"css": "src/styles/globals.css",
|
|
"baseColor": "neutral",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/libs",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"registries": {}
|
|
}
|