2
0
Files
bot/apps/landing-page/tailwind.config.js

9 lines
198 B
JavaScript
Raw Normal View History

2024-04-19 13:20:58 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/blog/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {},
},
plugins: [require('@tailwindcss/typography')],
}