2025-05-10 08:40:40 +00:00
|
|
|
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:
|
2025-07-07 18:25:13 +00:00
|
|
|
content: [
|
|
|
|
|
"**/*.{ts,tsx}",
|
|
|
|
|
"apps/**/*.{ts,tsx}",
|
|
|
|
|
"../../packages/shadcn-ui/src/**/*.{ts,tsx}",
|
|
|
|
|
"../../modules/**/*.{ts,tsx}",
|
|
|
|
|
],
|
|
|
|
|
};
|
2025-05-10 08:40:40 +00:00
|
|
|
|
|
|
|
|
export default config;
|