accounts/dashboard/postcss.config.js
Haitao Pan 3148c42619 refactor(config): modernize to ES Module format
- Convert tailwind.config.js and postcss.config.js to ES Module syntax
- Remove duplicate .mjs files and temporary config files
- Update CONFIG_SYSTEM_SUMMARY.md with migration guide
- All configs now use import/export consistently

🤖 Generated with [Claude Code](https://claude.com/claude-code)
2025-11-11 12:26:04 +08:00

15 lines
215 B
JavaScript

/**
* PostCSS 配置文件
* 使用 ES Module 格式 - 统一现代标准
*
* 参考: https://postcss.org/
*/
export default {
// 插件列表
plugins: {
autoprefixer: {},
tailwindcss: {},
},
}