25 lines
671 B
JavaScript
25 lines
671 B
JavaScript
/**
|
|
* PostCSS Configuration for Tailwind CSS v4
|
|
*
|
|
* Compatible with: Tailwind CSS >=4.0.0
|
|
*
|
|
* Breaking changes from v3:
|
|
* - Plugin name changed from 'tailwindcss' to '@tailwindcss/postcss'
|
|
* - Improved performance with new architecture
|
|
* - Better integration with build tools
|
|
*
|
|
* Migration guide: https://tailwindcss.com/docs/upgrade-guide
|
|
* Generated by: playwright-e2e-automation skill
|
|
*/
|
|
|
|
export default {
|
|
plugins: {
|
|
// Tailwind CSS v4 uses '@tailwindcss/postcss' as plugin name
|
|
// This is a BREAKING CHANGE from v3
|
|
'@tailwindcss/postcss': {},
|
|
|
|
// Autoprefixer adds vendor prefixes for browser compatibility
|
|
autoprefixer: {},
|
|
},
|
|
};
|