Files
websopy-taro/postcss.config.js
赵忠林 e4524154e0 fix(tailwind): 更新配置以兼容微信小程序
- 启用 autoprefixer 并新增 postcss-nested 插件支持嵌套语法
- 扩展主题颜色,添加 primary 色系
- 更新 content 路径包含 public/index.html
- 禁用 preflight 以移除默认样式重置
- 移除多数 corePlugins 禁用项,保留 preflight 禁用,简化兼容性配置
2026-06-30 15:45:12 +08:00

8 lines
106 B
JavaScript

module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
'postcss-nested': {}
}
}