From 7353205199d4d3d82da38233b723232816c3806d Mon Sep 17 00:00:00 2001 From: lintsinghua <1930438860@qq.com> Date: Wed, 22 Oct 2025 15:13:18 +0800 Subject: [PATCH] chore(config): Update components.json configuration - Add $schema property for UI component configuration validation - Remove hardcoded Tailwind config path - Normalize JSON formatting - Maintain existing project configuration settings --- components.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components.json b/components.json index 4f86a62..7dfce35 100644 --- a/components.json +++ b/components.json @@ -1,9 +1,10 @@ { + "$schema": "https://ui.shadcn.com/schema.json", "style": "new-york", "rsc": false, "tsx": true, "tailwind": { - "config": "config/tailwind.config.js", + "config": "", "css": "src/index.css", "baseColor": "slate", "cssVariables": true, @@ -17,4 +18,4 @@ "hooks": "@/hooks" }, "iconLibrary": "lucide" -} +} \ No newline at end of file