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 was archived by the owner on Jan 9, 2019. It is now read-only.
I want to use the "--modify-var" less option in my code, but i m not able to use it. It always give the message: "invalid option modify-var". Same happens for "--global-var" less option. Below is the code snippet
...
List list = new ArrayList();
list.add("--modify-var="base=#400854"");
LessCompiler lesscompiler = new LessCompiler();
lesscompiler.setOptions(list);
try {
String css = lesscompiler.compile();
...