Change antd primary-color.

This commit is contained in:
Yang Luo
2021-03-26 23:18:24 +08:00
parent 437289438f
commit 3bcc292da2
5 changed files with 5621 additions and 4827 deletions

17
web/craco.config.js Normal file
View File

@ -0,0 +1,17 @@
const CracoLessPlugin = require('craco-less');
module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: { '@primary-color': 'rgb(45,120,213)' },
javascriptEnabled: true,
},
},
},
},
],
};