I have two cases of using LESS:
import style from 'style.less'
import from 'skin.less'
In the first case I am using it in JS sources. In the second I need to move the styles into the page's head.
The issue is. I need the "head" style will be imported as-is, without classes renaming. The skin styles is replacing already existing and included styles, that is why class names need to be preserved. But instead of .video-js I am getting .skin_video-js__1_ipB. How may I handle it? Thank you!