Files
arnaudscheffler.fr/tailwind.config.ts
2024-11-02 17:58:27 +01:00

13 lines
222 B
TypeScript

import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [typography]
} as Config;