This commit is contained in:
张成
2025-10-09 16:09:53 +08:00
parent d941bec7d8
commit d5fb0075b2
51 changed files with 82 additions and 9913 deletions

16
postcss.config.js Normal file
View File

@@ -0,0 +1,16 @@
// PostCSS 配置文件
// 用于处理 CSS 样式转换和优化
module.exports = {
plugins: {
// 自动添加浏览器前缀
autoprefixer: {
overrideBrowserslist: [
'> 1%',
'last 2 versions',
'not dead',
'not ie <= 11'
]
}
}
}