move to using /src - still css issue work
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m31s

This commit is contained in:
2025-11-12 17:03:59 -08:00
parent dcac08e737
commit e12b7f7f6e
2 changed files with 15 additions and 9 deletions

View File

@@ -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,
],
};