Files
doc_ai_frontend/tailwind.config.js

11 lines
213 B
JavaScript
Raw Normal View History

2025-12-22 17:37:41 +08:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
};