18 lines
387 B
TypeScript
18 lines
387 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}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
|
|
};
|
|
|
|
export default config;
|