webpack antd 按需加载
Posted 每天都要进步一点点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack antd 按需加载相关的知识,希望对你有一定的参考价值。
安装babel-plugin-import插件。下面方法二选一,都可以实现antd的按需加载。
一、配置webpack.config.js文件
{ test: /.jsx?$/, exclude: /(node_modules|bower_components)/, use: [{ loader: ‘babel-loader‘ }], options: { "plugins": [ [ "import", { "libraryName": "antd", "style": true } ] ] } }
二、配置babelrc文件
{ "presets": ["env", "react"], "plugins": [ "transform-runtime", "transform-object-rest-spread", [ "import", { "libraryName": "antd", "style": true } ] ] }
以上是关于webpack antd 按需加载的主要内容,如果未能解决你的问题,请参考以下文章
react18——使用craco库增量修改webpack——配置antd实现按需加载