We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is there a way I can tell the loader not to resolve a url to images in a url()
Would like: background-image: url('../img/some-image.gif'); to output the same thing: background-image: url('../img/some-image.gif');
The text was updated successfully, but these errors were encountered:
no, but you can use the raw-loader instead of the css-loader.
raw-loader
css-loader
Sorry, something went wrong.
Thanks
fixes webpack-contrib#35
5e4fe6e
This worked for me css-loader?url=false webpack-contrib/mini-css-extract-plugin#156 (comment)
css-loader?url=false
No branches or pull requests
Is there a way I can tell the loader not to resolve a url to images in a url()
Would like:
background-image: url('../img/some-image.gif');
to output the same thing:
background-image: url('../img/some-image.gif');
The text was updated successfully, but these errors were encountered: