Uecko_ERP/packages/shadcn-ui/tailwind.config.mts

18 lines
387 B
TypeScript
Raw Normal View History

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}",
2026-04-28 09:34:22 +00:00
],
2026-04-12 10:07:54 +00:00
theme: {
extend: {},
},
plugins: [],
2026-04-28 09:34:22 +00:00
2025-07-07 18:25:13 +00:00
};
2025-05-10 08:40:40 +00:00
export default config;