I'm using postcss-import
to take care of my imports, and cssnano
to minify. In my Webpack config I've been using the following setup for css-loader
...
{
loader: 'css-loader',
options: {
url: false,
import: false,
minimize: false,
importLoaders: 1,
souceMap: true,
}
}
...but when I remove that everything still seems to load fine, so now I just have post-css
before style-loader
. Can I safely omit css-loader
from my css build, or is there some other functionality it provides that is necessary? I've yet to see a webpack.config.js
file that doesn't use css-loader
, so I want to be cautious here! :)