我必须能够在运行时更改 ant 设计变量(而不是通过无主题文件)。我发现很多使用customize-cra和react-app-rewire-less的例子,但似乎没有一个适用于 craco。我必须使用 craco,因为我也在这个项目中使用tailwindcss 。
我试过的:
- antd-theme-webpack-plugin:我可以访问
window.less.modifyVars
,但它似乎什么也没做(调用它不会引发错误,但 antd 颜色不会改变); - antd-theme-switcher:和上面的很相似,
window.less.modifyVars
好像没什么效果; - antd-theme:我不知道如何添加
AntdThemePlugin.loader
incraco.config.js
,我不确定这是问题所在,但我无法让它工作。
这是我的当前状态craco.config.js
:
const path = require("path");
const CracoAntDesignPlugin = require("craco-antd");
const AntDesignThemePlugin = require("antd-theme-webpack-plugin");
const options = {
antDir: path.join(__dirname, "./node_modules/antd"),
stylesDir: path.join(__dirname, "./src"),
varFile: path.join(__dirname, "./src/styles/variables.less"),
themeVariables: ["@primary-color"],
indexFileName: false,
generateOnce: false,
};
const ThemePlugin = new AntDesignThemePlugin(options);
module.exports = {
style: {
postcss: {
plugins: [require("tailwindcss"), require("autoprefixer")],
},
},
plugins: [
{
plugin: CracoAntDesignPlugin,
options: {
customizeThemeLessPath: path.join(
__dirname,
"./src/styles/variables.less"
),
lessLoaderOptions: {
lessOptions: {
javascriptEnabled: true,
modifyVars: {
"@primary-color": "#00375B",
},
},
},
},
},
{ plugin: ThemePlugin },
],
};
在这一点上,我真的要尝试任何可能的解决方案,这个问题真的很耗时。