我正在将webpack extract-text-plugin
与以下代码一起使用,但收到错误:ModuleBuildError: Module build failed: .bg is undefined
。有没有办法进行这种导入工作?
我的index.jsx
文件如下:
import 'style-theme-module/less/index.less'
import './style.less'
我的样式主题模块/less/index.less是:
.bg{
color: white
}
我的style.less是:
.app{
.bg()
}