ant design css not work

按照官网上配置好 import-plugin 也不能生效

原因是既用了 css modules 又用了ant

webpack.config.dev.js:

{

            test: cssRegex,

            exclude: /node_modules/,

            use: getStyleLoaders({

              importLoaders: 1,

              modules: true,

              localIndetName: "[name]__[local]___[hash:base64:5]"

            }),

          },

          {

            test: cssRegex,

            include: /node_modules/,

            use: getStyleLoaders({

              importLoaders: 1,

            }),

          },

大功告成。

你可能感兴趣的:(ant design css not work)