WebChatV2/tailwind.config.js

10 lines
185 B
JavaScript
Raw Normal View History

import typography from '@tailwindcss/typography'
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [typography],
}