We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following loader defined for all my CSS files:
{ test: /\.css$/, loaders: [ "style", "css?minimize" ] },
The following CSS is one stand-alone file from font-squirrel.com which defines the DroidSans font:
@font-face { font-family: 'droid_sansregular'; src: url('../font/droid_sansregular/DroidSans-webfont.eot'); src: url('../font/droid_sansregular/DroidSans-webfont.eot?#iefix') format('embedded-opentype'), url('../font/droid_sansregular/DroidSans-webfont.woff') format('woff'), url('../font/droid_sansregular/DroidSans-webfont.ttf') format('truetype'), url('../font/droid_sansregular/DroidSans-webfont.svg#droid_sansregular') format('svg'); font-weight: normal; font-style: normal; }
Problem: With the minimizer flag in place, the entire CSS is reduced to an empty string. Removing the minimizer flag resolves the problem.
This applies to all CSS files with @font-faces in them. All other CSS files are imported and minimized as expected.
The text was updated successfully, but these errors were encountered:
same here 😢
Sorry, something went wrong.
Disable unused rule removal & identifier reduction. Fixes #89.
e70901a
This was fixed in 0.15.2, just update your css-loader. I think this issue can be closed.
No branches or pull requests
I have the following loader defined for all my CSS files:
The following CSS is one stand-alone file from font-squirrel.com which defines the DroidSans font:
Problem: With the minimizer flag in place, the entire CSS is reduced to an empty string. Removing the minimizer flag resolves the problem.
This applies to all CSS files with @font-faces in them. All other CSS files are imported and minimized as expected.
The text was updated successfully, but these errors were encountered: