You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
const { override, fixBabelImports, addLessLoader } = require('customize-cra');
|
|
|
|
module.exports = override(
|
|
fixBabelImports('import', {
|
|
libraryName: 'antd',
|
|
libraryDirectory: 'es',
|
|
style: true,
|
|
}),
|
|
|
|
addLessLoader({
|
|
javascriptEnabled: true,
|
|
// modifyVars: { '@primary-color': '#1DA57A' },
|
|
}),
|
|
);
|