@rmchen-12/css
v1.0.0
Published
fix css-modules problem when nextjs use antd-mobile
Downloads
1
Maintainers
Readme
当在 next 中使用 antd-mobile 时想使用 css-modules,在 next-config.js 直接开启会出错,因为@zeit/css 默认不会对 antd-mobile 处理
使用
withCss({
cssModules: true,
antdMobileLoaderOptions: {
cssModules: false
}
})