mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
![]() |
require('dotenv').config();
|
||
|
const CracoAntDesignPlugin = require('craco-antd');
|
||
|
|
||
|
const themeConfig = require(`./src/conf/theme/${process.env.REACT_APP_THEME_CONFIG}`);
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
{
|
||
|
plugin: CracoAntDesignPlugin,
|
||
|
options: {
|
||
|
customizeTheme: themeConfig.styles,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|