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.
2 parents 18b1c80 + 4945cd0 commit c8cbeb2Copy full SHA for c8cbeb2
spec/libsass-todo-issues/issue_2349/expected_output.css
@@ -0,0 +1,4 @@
1
+.test {
2
+ background: url(assets/images/image.png);
3
+ background: url(/images/image.png);
4
+}
spec/libsass-todo-issues/issue_2349/input.scss
@@ -0,0 +1,6 @@
+$path1: assets/images; // no errors thrown
+$path2: /images; // errors thrown
+ background: url(#{$path1}/image.png);
5
+ background: url(#{$path2}/image.png);
6
0 commit comments