mirror of
https://github.com/jakobkordez/call-tester.git
synced 2025-07-29 17:27:41 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
import typography from '@tailwindcss/typography';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [typography]
|
|
};
|