Spaces:
Running
Running
File size: 357 Bytes
c27d5c6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import containerQueries from '@tailwindcss/container-queries';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [typography, forms, containerQueries]
} satisfies Config;
|