ant-design / antd-style

css-in-js library with antd v5 token system

Home Page:https://ant-design.github.io/antd-style/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🧐[问题] Antd 被应用于外部库

duoi opened this issue · comments

🧐 问题描述

  1. Label Studio (https://github.com/HumanSignal/label-studio) 用这个代码包。
  2. 我正在将标签工作室导入到我的应用程序中。
  3. 我只是在用Label Studio 的特定部分。
  4. antd 样式表的构建方式会将样式应用到全局。
  5. antd的样式正在盖着我的样式。
  6. 我已经试了在 webpack 中禁用这些样式的加载,如下,但是不成功。
exclude:{
  test   :/\.css$/,
  include:/node_modules\/antd/,
  use    :[
    {
      loader:'ignore-loader',
    },
  ],
},

在这里的任何帮助(或我可以进行的任何修改)都将不胜感激