Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 22s
18 lines
410 B
JavaScript
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}",
|
|
],
|
|
}),
|
|
],
|
|
}; |