В своем компоненте я импортировал стиль:
Код: Выделить всё
import * as styles from './mycomponent.module.less'
Код: Выделить всё
declare module '*.module.less' {
const classes: { [key: string]: string }
export = classes
}
Код: Выделить всё
{
loader: 'css-loader',
options: {
url: false,
modules: {
auto: /\.module\.\w+$/i, // only enable CSS modules for *.module.* files
localIdentName: '[name]__[local]--[hash:base64:5]',
},
},
}
Кто-нибудь знает, в чем здесь проблема?
Подробнее здесь: https://stackoverflow.com/questions/793 ... les-object
Мобильная версия