phpsw-sculpin-demo/assets/tailwind.config.ts

15 lines
244 B
TypeScript
Raw Normal View History

2024-02-06 08:00:00 +00:00
import type { Config } from 'tailwindcss'
export default {
content: ['./source/**/*.{html,md,twig}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
}
},
},
plugins: [],
} satisfies Config