2025-05-10 08:40:40 +00:00
|
|
|
import type { Config } from "tailwindcss";
|
|
|
|
|
|
|
|
|
|
const config = {
|
2025-05-10 18:14:06 +00:00
|
|
|
// this file is located in packages/shadcn-ui, but it is being used by apps/web (and any future web apps).
|
2025-05-10 08:40:40 +00:00
|
|
|
// hence, the following paths:
|
|
|
|
|
content: ["app/**/*.{ts,tsx}", "../../packages/shadcn-ui/src/**/*.{ts,tsx}"],
|
|
|
|
|
} satisfies Config;
|
|
|
|
|
|
|
|
|
|
export default config;
|