fix: Remove autoprefixer from PostCSS config

- autoprefixer not installed and not needed for Tailwind 4
- Tailwind 4 includes autoprefixing built-in
- Fixes: Cannot find module 'autoprefixer'
This commit is contained in:
Kunthawat Greethong
2026-03-03 13:04:36 +07:00
parent 87ec3846c9
commit f934a18490

View File

@@ -1,6 +1,5 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
tailwindcss: {}
}
};