From e12b7f7f6e6709542033be354d7d66a200fd4834 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Wed, 12 Nov 2025 17:03:59 -0800 Subject: [PATCH] move to using /src - still css issue work --- postcss.config.js | 13 ++++--------- tailwind.config.js | 11 +++++++++++ 2 files changed, 15 insertions(+), 9 deletions(-) create mode 100644 tailwind.config.js diff --git a/postcss.config.js b/postcss.config.js index e92ac86c..cfae702e 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,18 +1,13 @@ // postcss.config.js -import tailwindcss from 'tailwindcss'; +import tailwindcssPostcss from '@tailwindcss/postcss'; console.log('--- [EXECUTION PROOF] postcss.config.js is being loaded. ---'); export default { plugins: [ - // Initialize the tailwindcss plugin and pass the config object directly. - // This bypasses ALL file searching. - tailwindcss({ - content: [ - "./index.html", - "./src/**/*.{js,ts,jsx,tsx}", - ], - }), + // Use the plugin the error message specifically told us to use. + // This plugin will then be responsible for finding tailwind.config.js + tailwindcssPostcss, ], }; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 00000000..b942dfcd --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,11 @@ +// tailwind.config.js + +console.log('--- [EXECUTION PROOF] tailwind.config.js is being loaded. ---'); + +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./index.html", + "./src/**/*.{js,ts,jsx,tsx}", + ], +}; \ No newline at end of file