加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
postcss.config.js 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
devin 提交于 2021-02-24 16:41 . feat(*): init项目
/*
* @Overview : .post-css-rc
* @Author : Zi Jun
* @Email : zijun2030@163.com
* @Date : 2021-02-23 10:48:12
* @LastEditTime : 2021-02-23 14:29:44
* @LastEditors : Zi Jun
* @FilePath : \simple-vite\postcss.config.js
* @Mark : Do not edit
*/
module.exports = {
plugins: {
'postcss-px-to-viewport': {
unitToConvert: 'px',
viewportWidth: 375,
unitPrecision: 3,
propList: ['*'],
viewportUnit: 'vw',
fontViewportUnit: 'vw',
selectorBlackList: ['ignore-'],
minPixelValue: 1,
mediaQuery: false,
replace: true,
exclude: [],
landscape: false,
landscapeUnit: 'vw',
landscapeWidth: 568,
},
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化