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;