美文网首页
ant design css not work

ant design css not work

作者: 秋意亦夕 | 来源:发表于2018-12-01 17:31 被阅读0次

    按照官网上配置好 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

          本文链接:https://www.haomeiwen.com/subject/qosrcqtx.html