Files
myeasycms-v2/apps/web/tailwind.config.ts
2025-01-14 17:37:57 +07:00

11 lines
373 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, './components/**/*.tsx', './app/**/*.tsx', './lib/fonts.ts'],
presets: [baseConfig],
} satisfies Config;