diff --git a/docs/cookbook/integrating-shadcn-ui.md b/docs/cookbook/integrating-shadcn-ui.md index 82303646..919bbe0c 100644 --- a/docs/cookbook/integrating-shadcn-ui.md +++ b/docs/cookbook/integrating-shadcn-ui.md @@ -127,3 +127,14 @@ Now you can import and use your new button component from `@/components/ui/butto > [!NOTE] > Check out the [`shadcn/ui` components gallery](https://ui.shadcn.com/docs/components/accordion) to explore all the beautiful components at your disposal. + + +## Troubleshooting + +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. +``` +@tailwind base; +@tailwind components; +@tailwind utilities; +``` +Reference: [Link to Common Github Issue](https://github.com/shadcn-ui/ui/issues/4677)