react+mobx+antd按需加载 出现Support for the experimental syntax 'decorators-legacy' isn't curr
Posted umbrellar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react+mobx+antd按需加载 出现Support for the experimental syntax 'decorators-legacy' isn't curr相关的知识,希望对你有一定的参考价值。
baidu上面的说法大多是在 项目的package.json 中添加decorators-legacy
因为引入了antd的按需加载 所以只需要在config-overrides.js中添加addDecoratorsLegacy()
const { override, fixBabelImports,addDecoratorsLegacy } = require(‘customize-cra‘);
module.exports = override(
fixBabelImports(‘import‘, {
libraryName: ‘antd‘,
libraryDirectory: ‘es‘,
style: ‘css‘,
}),addDecoratorsLegacy(),
);
以上是关于react+mobx+antd按需加载 出现Support for the experimental syntax 'decorators-legacy' isn't curr的主要内容,如果未能解决你的问题,请参考以下文章