- 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)
15 lines
215 B
JavaScript
15 lines
215 B
JavaScript
/**
|
|
* PostCSS 配置文件
|
|
* 使用 ES Module 格式 - 统一现代标准
|
|
*
|
|
* 参考: https://postcss.org/
|
|
*/
|
|
|
|
export default {
|
|
// 插件列表
|
|
plugins: {
|
|
autoprefixer: {},
|
|
tailwindcss: {},
|
|
},
|
|
}
|