You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cookbook/integrating-shadcn-ui.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,3 +131,14 @@ Now you can import and use your new button component from `@/components/ui/butto
131
131
132
132
> [!NOTE]
133
133
> Check out the [`shadcn/ui` components gallery](https://ui.shadcn.com/docs/components/accordion) to explore all the beautiful components at your disposal.
134
+
135
+
136
+
## Troubleshooting
137
+
138
+
If you're using `vite` and see this error `No Tailwind CSS configuration found at path....` (but do have a `tailwind.config.js`) ensure you've imported the CSS properly.
139
+
```
140
+
@tailwind base;
141
+
@tailwind components;
142
+
@tailwind utilities;
143
+
```
144
+
Reference: [Link to Common Github Issue](https://github.com/shadcn-ui/ui/issues/4677)
0 commit comments