Code dump

This commit is contained in:
Jason Jordan
2025-11-24 08:28:31 -05:00
parent 181be7e16c
commit 77f294c972
6 changed files with 1500 additions and 76 deletions
+19 -19
View File
@@ -1,20 +1,20 @@
import fluid, { extract, screens, fontSize } from 'fluid-tailwind'
// import fluid, { extract, screens, fontSize } from 'fluid-tailwind'
module.exports = {
// 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
},
theme: {
extend: {},
screens, // Integrate fluid-tailwind's screens for responsive breakpoints
fontSize, // Integrate fluid-tailwind's font sizes for fluid typography
},
plugins: [
fluid, // Include the fluid-tailwind plugin
],
};
// module.exports = {
// // 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
// },
// theme: {
// extend: {},
// screens, // Integrate fluid-tailwind's screens for responsive breakpoints
// fontSize, // Integrate fluid-tailwind's font sizes for fluid typography
// },
// plugins: [
// fluid, // Include the fluid-tailwind plugin
// ],
// };