美文网首页
nextJS@10.2.2 引入antd 按需加载报错

nextJS@10.2.2 引入antd 按需加载报错

作者: 殇城阡陌 | 来源:发表于2021-05-23 01:43 被阅读0次

    yarn add webpack@webpack-4

    在.babelrc引入

    "plugins": [

        [

          "import",

          {

            "libraryName": "antd",

            // true 的时候才会编译less

            "style": true

          }

        ],

    修改在next.config.js

    withCSS({

        // 添加

        cssModules: true,

        cssLoaderOptions: {

          importLoaders: 1,

          localIdentName: "[local]___[hash:base64:5]"

        },

        ...withLess(

          withSass({

            lessLoaderOptions: {

              javascriptEnabled: true

            }

          })

        ),

    相关文章

      网友评论

          本文标题:nextJS@10.2.2 引入antd 按需加载报错

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