NextJS 中使用 antd, 开启 cssModules 后, antd 样式就没有了,怎么解决?

xmaxance

const withLess = require('@zeit/next-less')

module.exports = withLess({
    cssModules: true,
    lessLoaderOptions: {
        javascriptEnabled: true
     }
})

antd 是不需要开启 cssModules 的,那么 NextJS 中如何处理 antd 不开启 cssModules,而其他开启呢?

xmaxance:请教一下各位大佬