Files
flyer-crawler.projectium.com/postcss.config.js
Torben Sorensen dcac08e737
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 22s
move to using /src - still css issue work
2025-11-12 16:55:10 -08:00

18 lines
410 B
JavaScript

// postcss.config.js
import tailwindcss from 'tailwindcss';
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}",
],
}),
],
};