// PostCSS config for Vite. Tells Vite to run Tailwind's JIT compiler and // Autoprefixer on every CSS file it processes. Without this, Vite has no // way of knowing which PostCSS plugins to apply, and the @tailwind // directives in src/index.css would either be ignored or only partially // processed (preflight + @apply but no utility classes). export default { plugins: { tailwindcss: {}, autoprefixer: {}, }, };