We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following in my components.json:
components.json
{ "$schema": "https://ui.shadcn.com/schema.json", "style": "default", "rsc": false, "tsx": true, "tailwind": { "config": "", "css": "src/styles.css", "baseColor": "neutral", "cssVariables": true, "prefix": "" }, "aliases": { "components": "@/components", "utils": "@udecode/cn", "ui": "@/components/ui", "lib": "@/utils", "hooks": "@/hooks" }, "iconLibrary": "lucide" }
however, the sidebar component still imports cn from components:
import { cn } from "@/components/shadcn/utils"
when it should be:
import { cn } from "@udecode/cn";
like all the other components
sidebar
See above
No response
N/A
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
I have the following in my
components.json
:however, the sidebar component still imports cn from components:
when it should be:
like all the other components
Affected component/components
sidebar
How to reproduce
See above
Codesandbox/StackBlitz link
No response
Logs
System Info
Before submitting
The text was updated successfully, but these errors were encountered: