1 Star 0 Fork 0

史威震/toutiao-mobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.postcssrc.js 997 Bytes
一键复制 编辑 原始数据 按行查看 历史
史威震 提交于 2021-11-28 18:25 . 文章详情文章正文的样式
/**
* PostCss 配置文件
*/
module.exports = {
// 配置要使用的 PostCSS插件
plugins: {
// 'autoprefixer': {
// // 配置要兼容到的环境信息
// browsers: ['Android >= 4.0', 'iOS >= 8']
// },
// 配置使用的 postcss-pxtorem 插件
// 作用: 把 px 转换为 rem
'postcss-pxtorem': {
// lib-flexible 的 ren 适配方案: 把一行分为 10 份,每份都是十分之一
// 我们的设计稿为 750 所以应该设计为 750 / 10
// vant 建议设置为 37.5
// 查阅文档 rootValue 支持两种类型
// 数字或者函数
// postcss 处理每个css文件的时候都会调用这个函数
// 会把被处理的 css 文件相关信息通过参数传递给该函数
rootValue ({ file }) {
return file.indexOf('vant') !== -1 ? 37.5 : 75
},
// rootValue: 37.5,
propList: ['*'],
// 配置不要转换的样式资源
exclude: 'github-markdown'
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shi-weizhen/toutiao-mobile.git
git@gitee.com:shi-weizhen/toutiao-mobile.git
shi-weizhen
toutiao-mobile
toutiao-mobile
master

搜索帮助