fix(tailwind): 更新配置以兼容微信小程序

- 启用 autoprefixer 并新增 postcss-nested 插件支持嵌套语法
- 扩展主题颜色,添加 primary 色系
- 更新 content 路径包含 public/index.html
- 禁用 preflight 以移除默认样式重置
- 移除多数 corePlugins 禁用项,保留 preflight 禁用,简化兼容性配置
This commit is contained in:
2026-06-30 15:45:12 +08:00
parent c39ee72c73
commit e4524154e0
2 changed files with 25 additions and 34 deletions

View File

@@ -1,8 +1,7 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {
remove: true // 禁用 autoprefixer避免添加浏览器前缀
},
},
autoprefixer: {},
'postcss-nested': {}
}
}