Spaces:
Running
Running
File size: 256 Bytes
1b44660 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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;
|