mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
Tailwind v4 was installed but the PostCSS config only referenced autoprefixer, so @tailwind directives were never processed and all utility classes rendered as no-ops. Migrating the v3-shaped config to v4 via @config/@source produced partial results and wasted cycles; downgrading restores a working build immediately. - tailwindcss: ^4.2.2 -> ^3.4.0 - postcss.config.js: add tailwindcss plugin - globals.css already uses v3 @tailwind directives
6 lines
94 B
JavaScript
6 lines
94 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
}
|