12 lines
191 B
JavaScript
Raw Normal View History

2025-06-13 05:31:31 +00:00
// tailwind.config.js
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}", // Adjust this to match your project structure
],
theme: {
extend: {},
},
plugins: [],
};