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的主要内容,如果未能解决你的问题,请参考以下文章

react配置antd按需加载

react配置antd按需加载

react中使用antd按需加载(第一部)

React引入AntD按需加载报错

react16.8 antd按需加载配置(已经弹出和未弹出分别的配置)

react中执行yarn eject配置antd-mobile的按需加载