1
This commit is contained in:
16
postcss.config.js
Normal file
16
postcss.config.js
Normal file
@@ -0,0 +1,16 @@
|
||||
// PostCSS 配置文件
|
||||
// 用于处理 CSS 样式转换和优化
|
||||
module.exports = {
|
||||
plugins: {
|
||||
// 自动添加浏览器前缀
|
||||
autoprefixer: {
|
||||
overrideBrowserslist: [
|
||||
'> 1%',
|
||||
'last 2 versions',
|
||||
'not dead',
|
||||
'not ie <= 11'
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user