blob: 6f0187518178ec19f553936719d194c7bdae4f7a [file] [log] [blame]
ybt02e716d2025-04-15 17:19:32 +08001/** @type {import('tailwindcss').Config} */
2export default {
3 content: [
4 "./index.html",
5 "./src/**/*.{js,jsx,ts,tsx}",
6 ],
7 theme: {
8 extend: {},
9 },
10 plugins: [],
11}
12