mirror of https://github.com/openspug/spug
16 lines
403 B
JavaScript
16 lines
403 B
JavaScript
/**
|
|
* Copyright (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
* Copyright (c) <spug.dev@gmail.com>
|
|
* Released under the AGPL-3.0 License.
|
|
*/
|
|
const {override, fixBabelImports, addDecoratorsLegacy} = require('customize-cra');
|
|
|
|
module.exports = override(
|
|
addDecoratorsLegacy(),
|
|
fixBabelImports('import', {
|
|
libraryName: 'antd',
|
|
libraryDirectory: 'es',
|
|
style: true,
|
|
})
|
|
);
|