Files
Wdipl-react/tailwind.config.js

12 lines
218 B
JavaScript
Raw Normal View History

2025-07-11 16:54:37 +05:30
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}", // or wherever your components are
],
theme: {
extend: {},
},
plugins: [],
};