sass / libsass

A C/C++ implementation of a Sass compiler
https://sass-lang.com/libsass
Other
4.34k stars 463 forks source link

node-sass throws error while image path includes exclamation mark(!) #3140

Closed kingback closed 3 years ago

kingback commented 3 years ago
.container {
  background: url(https://img.alicdn.com/imgextra/i1/O1CN01UGMWUI1kx5YpZyVz7_!!6000000004749-55-tps-42-43.svg);
}

image

Wrap image path with "" is ok.

.container {
  background: url("https://img.alicdn.com/imgextra/i1/O1CN01UGMWUI1kx5YpZyVz7_!!6000000004749-55-tps-42-43.svg");
}
kingback commented 3 years ago

Duplicate of #2880