12 lines
196 B
TypeScript
12 lines
196 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
|
|
plugins: [require('@tailwindcss/typography')]
|
|
} as Config;
|