From 8b76598cd223cb316663d1198a7553190c643a93 Mon Sep 17 00:00:00 2001 From: Stephen Zhou Date: Wed, 3 Jan 2024 21:04:16 +0800 Subject: [PATCH] docs: update components.json --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 52d9307..4555114 100644 --- a/README.md +++ b/README.md @@ -87,18 +87,19 @@ React + shadcn-ui { "$schema": "https://ui.shadcn.com/schema.json", "style": "default", - "rsc": false, - "tsx": true, "tailwind": { "config": "tailwind.config.js", - "css": "app/globals.css", + "css": "styles/global.css", "baseColor": "neutral", "cssVariables": true, "prefix": "" }, + "rsc": false, + "tsx": true, "aliases": { - "components": "@/components", - "utils": "@/lib/utils" + "utils": "~/lib/utils", + "components": "~/components", + "ui": "~/components/ui" } } ```