ReactJS 結合 antd-mobile 開發 h5 應用基本配置

在 ReactJS 較爲初級的使用 antd-mobile 使用時候直接加載 node_modules 文件中的相關 CSS,這個使用方法效率低;更高明的方法則按需加載,須要設置以下:css

  1. 在 package.json 的 babel 配置裏的 plugins 項裏添加 以下代碼:
[
        "import",
        {
          "libraryName": "antd-mobile",
          "style": "css"
        }
      ]

參考:node

  1. antd-mobile 配置介紹
  2. babel-plugin-import 配置介紹
相關文章
相關標籤/搜索