import type { Config } from 'tailwindcss'; import preset from '@repo/config/tailwind/preset'; const config: Config = { presets: [preset], content: [ './app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}', './lib/**/*.{ts,tsx}', '../../packages/ui/src/**/*.{ts,tsx}', ], }; export default config;