Open jacargentina opened 7 years ago
You just need to import it without postcss processing. Add following rule to your webpack config:
rules: [
...
{
test: /node_modules\/.*\.css$/,
use: [
'style-loader',
'css-loader'
]
}
]
Using postcss in my React app, and then when i do
the classes are already processed, so there is no class
CodeMirror
, etc.