13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
const config = {
|
|
// this file is located in packages/shadcn-ui, but it is being used by apps/web (and any future web apps).
|
|
// hence, the following paths:
|
|
content: [
|
|
"**/*.{ts,tsx}",
|
|
"apps/**/*.{ts,tsx}",
|
|
"../../packages/shadcn-ui/src/**/*.{ts,tsx}",
|
|
"../../modules/**/*.{ts,tsx}",
|
|
],
|
|
};
|
|
|
|
export default config;
|