forked from ita-social-projects/EPlast-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
craco.config.js
30 lines (29 loc) · 906 Bytes
/
craco.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const CracoLessPlugin = require("craco-less");
module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
"@primary-color": "#3c5438",
"@layout-header-background": "#3c5438",
"@layout-footer-background": "#3c5438",
"@layout-sider-background": "#3c5438",
"@menu-dark-item-hover-bg": "transparent",
"@menu-bg": "#3c5438",
"@menu-item-active-border-width": "none",
"@dropdown-menu-bg": "#3c5438",
"@menu-dark-submenu-bg": "#3c5438",
"@layout-trigger-background": "#3c5438",
"@tooltip-bg": "#3c5438",
"@item-hover-bg": "transparent",
},
javascriptEnabled: true,
},
},
},
},
],
};