加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
postcss.config.mjs 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
import autoprefixer from "autoprefixer";
import sortMediaQueries from "postcss-sort-media-queries"
export default context => {
return {
map: {
inline: false,
annotation: true,
sourcesContent: true
},
plugins: [
autoprefixer({
//禁用级联效果(厂商前缀对齐)
cascade: false
}),
sortMediaQueries({
sort: function (a, b) {
let aMax = a.match(/\d+/)[0];
let bMax = b.match(/\d+/)[0];
return bMax - aMax;
}
})
],
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化