1

我正在从纯 Webpack 迁移到 CRA 模板并且我正在使用 antd,所以我正在尝试实现 craco-antd包,但我遇到了一个问题:在生成的内联 css 中,antd 规则的优先级高于我的:

index.js

import React from 'react';
import './style.less';
import './theme.less';

craco.config.js

const CracoAntDesignPlugin = require("craco-antd");

module.exports = {
    plugins: [
        {
            plugin: CracoAntDesignPlugin
        }
    ]
};

结果 :

antd规则在我之上

编辑:我在 prod 和 debug build 上没有相同的行为 => prod OK debug KO

4

0 回答 0