Files
doris/ui/postcss.config.js
鹏翔 a88782e0c5 [UI Part 4] A new UI for Frontend (#4602)
A new FE UI interface implemented with React framework.
Need to work with the new Spring framework and RESTful API in #4596.

This is a simple UI for Doris. User can develope their own UI if they want

Proposal #4308
2020-09-16 15:03:24 +08:00

18 lines
337 B
JavaScript

/**
* @file test cron
* @author lpx
* @since 2020/08/19
*/
module.exports = {
plugins: {
// 兼容浏览器,添加前缀
'autoprefixer': {
overrideBrowserslist: [
'Chrome > 31',
'ff > 31',
'ie >= 8'
],
grid: true
}
}
};