From 7cb5ff487d1f3ac19ae22ae46d714b08246eb313 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Wed, 14 Jan 2026 12:13:12 +0100 Subject: [PATCH] feat: add components configuration file for UI setup Introduce `components.json` to define UI schema, aliases, styling preferences, and Tailwind integration. --- frontend/components.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 frontend/components.json diff --git a/frontend/components.json b/frontend/components.json new file mode 100644 index 0000000..dec871e --- /dev/null +++ b/frontend/components.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "new-york", + "rsc": true, + "tsx": true, + "tailwind": { + "config": "", + "css": "src/app/globals.css", + "baseColor": "stone", + "cssVariables": true, + "prefix": "" + }, + "iconLibrary": "lucide", + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/components/ui", + "lib": "@/lib", + "hooks": "@/hooks" + }, + "registries": {} +}