Files
myeasycms-v2/apps/web/tailwind.config.ts
giancarlo bce3479368 Cleanup
2024-03-24 02:23:22 +08:00

11 lines
351 B
TypeScript

import type { Config } from 'tailwindcss';
import baseConfig from '@kit/tailwind-config';
export default {
// We need to append the path to the UI package to the content array so that
// those classes are included correctly.
content: [...baseConfig.content, '../../packages/ui/src/**/*.{ts,tsx}'],
presets: [baseConfig],
} satisfies Config;