-
-
Notifications
You must be signed in to change notification settings - Fork 51.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customization of theme is broken with latest version of less-loader #23624
Comments
@afc163 手动触发一下部署? |
Please pin this issue to avoid duplication. |
I believe have the same issue: Error:
I followed the steps here: https://ant.design/docs/react/use-with-create-react-app |
Well I don't think
I've created a demo repo to reproduce this issue: related possible root-cause: |
the right version of less-loader@5 to use would be 5.0.0. I got an error while trying to install @5.0.1
|
Thanks @preshonyee I've updated my comments and repo point to 5.0.0 |
Workaround for less-load@6:
addLessLoader({
lessOptions: { // If you are using less-loader@5 please spread the lessOptions to options directly
javascriptEnabled: true,
modifyVars: { '@primary-color': '#1DA57A' },
},
}), |
If you are using a custom react boilerplate with webpack you can do the following
|
For the one who is using 'create-react-app' to customize the theme can check the following settings: craco.config.js
package.json
|
package.json: config-overrides.js |
config-overrides.js
package.json
customize the theme. but it did not work for me. what`s wrong with me.how to solving the fucking issue |
For anyone still having this issue, the problem comes from the fact that the package "customize-cra" introduced breaking changes with the function addLessLoader. const { override, fixBabelImports } = require('customize-cra'); module.exports = override( |
Reproduction link
https://github.com/Solias99/antd-theme-demo
Steps to reproduce
(Follow the entire guide to customize theme for antd)
What is expected?
Customization of theme should be possible. In this case, I've changed the primary color. So the button must be green now instead of blue.
What is actually happening?
Console is throwing an error.
The error being:
ValidationError: Invalid options object. Less Loader has been initialized using an options object that does not match the API schema.
object { lessOptions?, prependData?, appendData?, sourceMap? }
It looks like this problem is happening because less-loader just had a breaking release day before yesterday. They recently shifted to 6.0.0.
Customization still works fine if the version of less loader is ~v5.
It looks like antd's docs will have to be updated to accommodate the breaking changes of v6, and temporarily ask users to shift to v5 to be able to customize theme.
The text was updated successfully, but these errors were encountered: