How to use @import url()
in CSS
warningDon't use
@import in CSS
. It's verybad practice
.
Bad example, main.css:
@import 'path/to/style.css';
The plugin does not support handling of @import url()
in CSS. Imported url will be passed 1:1 into resulting CSS.
Problem
Defaults, css-loader
handles @import at-rule
, which causes an issue in the plugin.
Solution
Add the import: false
into css-loader
options:
{
test: /\.(css)$/i,
loader: 'css-loader',
options: {
import: false, // disable handling of @import at-rule in CSS
},
},
warningThe
*.css
files imported in CSS are not handled, therefore these files must be manually copied to thedist/
folder using thecopy-webpack-plugin
.