I have a LESS variable in a file called "variable.less" that looks like:
@maxcdn-heroku-ssl: "https://heroku-mywebsite.netdna-ssl.com";
I'm trying to import that variable into a separate LESS file and use it as so:
@import "variables.less";
.guide {
background-image:url(@maxcdn-heroku-ssl+/public/image/Logo.default/Logo@2x.png);
This gives me the following error:
expected ')' got '+'
How to do this properly?