Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:16:40 +08:00
commit f125e90b9f
370 changed files with 67769 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* PostCSS Configuration for Tailwind CSS v3
*
* Compatible with: Tailwind CSS >=3.0.0 <4.0.0
* Generated by: playwright-e2e-automation skill
*/
export default {
plugins: {
// Tailwind CSS v3 uses 'tailwindcss' as plugin name
tailwindcss: {},
// Autoprefixer adds vendor prefixes for browser compatibility
autoprefixer: {},
},
};

View File

@@ -0,0 +1,24 @@
/**
* 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: {},
},
};