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 } ] ] }
相关推荐
不知道该写啥QAQ 2020-11-12
webfullStack 2020-11-09
Yvettre 2020-09-15
想做大牛的蜗牛 2020-10-30
gloria0 2020-10-26
gaojie0 2020-09-11
SelinaChan 2020-08-14
不知道该写啥QAQ 2020-08-09
gloria0 2020-08-09
不知道该写啥QAQ 2020-08-02
hline 2020-07-29
SelinaChan 2020-07-28
wangdianyong 2020-07-23
webpackvuees 2020-07-23
yqoxygen 2020-07-20
不知道该写啥QAQ 2020-07-18
waterv 2020-07-18
81463166 2020-07-17