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
url()
The CSS transformer will take:
foo { background-image: url("foobar.png"); }
and turn it into:
.demo_foo\?uc88-KVY { background-image: url("LMXcDq"); }
and also return this dependencies-array:
[ { type: "url", url: "foobar.png", placeholder: "LMXcDq", loc: { filePath: "demo.rb", start: { line: 3, column: 25 }, end: { line: 3, column: 34 } } } ]
So, somehow images need to be loaded and the placeholders should be replaced with their paths
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The CSS transformer will take:
and turn it into:
and also return this dependencies-array:
So, somehow images need to be loaded and the placeholders should be replaced with their paths
The text was updated successfully, but these errors were encountered: