我们正在使用
{
theme: './src/theme.js'
}
在 .wepackrc.js
,并且在 theme.js
中,我们设置了以下值
module.exports = {
'primary-color': '#2848e5',
'card-actions-background': '#ffffff',
'link-color': '#2848e5',
'body-background': '#fff',
'component-background': '#fff'
};
上面的方法工作正常,但仅在开发模式中,当我们尝试使用npm run build
命令进行构建时,它不使用我们拥有的自定义主题原色,并且重置为#1890ff ,它是antd的默认设置,我可以看到在 index.js 文件中没有我们的原色即#2848e5 的条目构建后生成。
我们正在使用最新版本的antd
任何对此的指点都会非常有帮助,谢谢。