康来智慧冷链系统 - 前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
530 B

/**
* @program: kicc-ui
* @description: postcss代码解析工具配置
* 它提供了一种方式用JavaScript代码来处理CSS,它负责把CSS代码解析成抽象语法树结构(Abstract Syntax Tree,AST)再交由插件来进行处理
* 目前用到的插件:
* 增加代码可读性 → postcss/autoprefixer
* 官网文档: https://github.com/postcss/autoprefixer
* @author: wangxiang4
* @create: 2022/4/6
*/
module.exports = {
plugins: {
// autoprefixer插件转换css配置
autoprefixer: {},
},
};