call-tester/tailwind.config.js
2024-08-10 19:44:28 +02:00

16 lines
312 B
JavaScript

import typography from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['"Roboto mono"', 'monospace']
}
}
},
plugins: [typography]
};