meridian-ml-service / apps /frontend /tailwind.config.ts
yunlonggong's picture
Initial project upload
1b44660
raw
history blame contribute delete
256 Bytes
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{js,ts,jsx,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [typography],
} satisfies Config;