13 lines
222 B
TypeScript
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;
|