2025-08-04 14:16:42 -04:00
|
|
|
import fluid, { extract, screens, fontSize } from 'fluid-tailwind'
|
|
|
|
|
|
2025-07-08 14:57:06 -04:00
|
|
|
module.exports = {
|
2025-08-04 14:16:42 -04:00
|
|
|
// Define content paths for Tailwind CSS to scan for classes
|
|
|
|
|
content: {
|
|
|
|
|
files: [
|
|
|
|
|
'./src/components/**/*.{tsx}',
|
|
|
|
|
'./src/app/**/*.{tsx}',
|
|
|
|
|
],
|
|
|
|
|
extract, // Use the extract function from fluid-tailwind
|
|
|
|
|
},
|
2025-07-08 14:57:06 -04:00
|
|
|
theme: {
|
2025-07-16 17:27:22 -04:00
|
|
|
extend: {},
|
2025-08-04 14:16:42 -04:00
|
|
|
screens, // Integrate fluid-tailwind's screens for responsive breakpoints
|
|
|
|
|
fontSize, // Integrate fluid-tailwind's font sizes for fluid typography
|
2025-07-08 14:57:06 -04:00
|
|
|
},
|
2025-08-04 14:16:42 -04:00
|
|
|
plugins: [
|
|
|
|
|
fluid, // Include the fluid-tailwind plugin
|
|
|
|
|
],
|
|
|
|
|
};
|