Hello!
I've been trying to use babel-plugin-transform-postcss but I keep having ENOENT due to the path used in the project. I didn't want to end up with ../../grid.css so I added in my webpack configuration my src folder in the resolve module array.
resolve: {
modules: [
'node_modules',
'src'
],
...
}
},
How can I do the same here?
Thanks!
Hello!
I've been trying to use
babel-plugin-transform-postcssbut I keep havingENOENTdue to the path used in the project. I didn't want to end up with../../grid.cssso I added in my webpack configuration mysrcfolder in the resolve module array.How can I do the same here?
Thanks!