You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
I want to define a variable, which could be empty in some cases @prefix: "";
and to use it like this src: url("@{prefix}/path/to/something");
the problem is that it compiles into src: url("""/path/to/something");
How to define an empty string variable, that can be compiled in src: url("/path/to/something");
The text was updated successfully, but these errors were encountered:
I want to define a variable, which could be empty in some cases
@prefix: "";
and to use it like this
src: url("@{prefix}/path/to/something");
the problem is that it compiles into
src: url("""/path/to/something");
How to define an empty string variable, that can be compiled in
src: url("/path/to/something");
The text was updated successfully, but these errors were encountered: