You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2026. It is now read-only.
The web docs site (Tailwind v4.3 + @tailwindcss/vite) still lists autoprefixer and postcss as devDependencies in web/package.json. Neither package is imported or configured anywhere in the project.
Tailwind CSS v4 handles autoprefixing and PostCSS processing internally through its Vite plugin (@tailwindcss/vite), making these explicit dependencies unnecessary.
Summary
The web docs site (Tailwind v4.3 +
@tailwindcss/vite) still lists autoprefixer and postcss as devDependencies inweb/package.json. Neither package is imported or configured anywhere in the project.Tailwind CSS v4 handles autoprefixing and PostCSS processing internally through its Vite plugin (
@tailwindcss/vite), making these explicit dependencies unnecessary.Current State
No
postcss.config.*file exists, and neither package is imported in any source file.Recommended Fix
Remove both packages from
web/package.jsondevDependencies and run pnpm install to update the lockfile.Impact