mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
|
/**
|
||
|
* @file 这个文件的作用是将 CSS 变量去掉来支持 IE11
|
||
|
*/
|
||
|
const postcssCustomProperties = require('postcss-custom-properties');
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [postcssCustomProperties({preserve: false})]
|
||
|
};
|