1. 程式人生 > >create-react-app中按需引入Ant-Design

create-react-app中按需引入Ant-Design

先來回顧一下create-react-app腳手架建立專案的方法

//安裝create-react-app腳手架
npm i create-react-app -g
//建立專案
create-react-app antd-demo
//啟動專案
npm start
安裝Ant-Design
npm i antd -S
按需引入Ant-Design外掛

這裡需要用到兩個外掛
一、
react-app-rewired(一個對 create-react-app 進行自定義配置的社群解決方案)。

npm i react-app-rewired -D

然後更改一下package.json,這裡有個坑,我們用create-react-app安裝出來的package.json並不是都是使用react-scripts start

這種方式,還有node scripts/start.js這種方式的,在第二種方式下這種更改就會出現問題,目前我還沒有想到解決的方法,目前建議就是多試幾次,尷尬