after successful installation, there is a file with the file name config-overrides.js,
/ * *
* @ do stuff with the webpack config.
* /
module.exports = function override (config, env) {
//
config = injectBabelPlugin(
[
"import",
{
libraryName: "antd",
libraryDirectory: "es",
style: "css"
}
],
config,
);
return config;
};
how can I add or modify configuration information here? Try to modify it, but the final result is unsuccessful.