first commit

This commit is contained in:
steven
2022-10-08 14:07:06 +08:00
commit 021dee7684
852 changed files with 252282 additions and 0 deletions

19
postcss.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = () => ({
plugins: [
// autoprefixer 自动补齐 CSS3 前缀,适配不同浏览器
require('autoprefixer')({
overrideBrowserslist: [
"last 10 versions", // 所有主流浏览器最近10版本用
],
}),
require('postcss-pxtorem')({
rootValue: 16,
unitPrecision: 3,
propList: ['font', 'font-size','classify-','ant-table-'],
selectorBlackList: [],
replace: true,
mediaQuery: false,
exclude: /node_modules/i
})
]
});