mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 11:40:28 -05:00
15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
import sharedConfig from '@shadcn/ui/tailwind.config';
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
...sharedConfig,
|
|
content: [
|
|
'./pages/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
'./app/**/*.{ts,tsx}',
|
|
'../../packages/shadcn/src/components/**/*.{ts,tsx}',
|
|
'../../packages/ui/src/**/*.{ts,tsx}',
|
|
],
|
|
};
|
|
export default config;
|