erp-platform/company/tailwind.config.js

11 lines
231 B
JavaScript
Raw Normal View History

2025-06-20 12:38:59 +00:00
import typography from '@tailwindcss/typography';
2025-05-15 10:48:03 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
2025-06-20 12:38:59 +00:00
plugins: [typography],
2025-05-15 10:48:03 +00:00
};