components.json 488 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "https://ui.shadcn.com/schema.json",
  3. "style": "new-york",
  4. "rsc": true,
  5. "tsx": true,
  6. "tailwind": {
  7. "config": "tailwind.config.ts",
  8. "css": "app/globals.scss",
  9. "baseColor": "neutral",
  10. "cssVariables": true,
  11. "prefix": ""
  12. },
  13. "aliases": {
  14. "components": "@/components",
  15. "ui": "@/components/ui",
  16. "constants": "@/constants",
  17. "dtos": "@/dtos",
  18. "hooks": "@/hooks",
  19. "lib": "@/lib",
  20. "utils": "@/lib/utils",
  21. "types": "@/types"
  22. },
  23. "iconLibrary": "lucide"
  24. }