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
18 lines
337 B
JavaScript
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
|
|
}
|
|
}
|
|
}; |