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
up, I'm stuck with the same issue too. Can anybody look into it? @metaskills ?
less.rb has relativeUrls parameter, but how do we configure it through less-rails?
Hi,
How Can I remove the "--relative-urls" config in less-rails? - http://lesscss.org/usage/#command-line-usage-relative-urls
In less by default this option is disabled, but in 'less-rails' when I call url() css function its produce a relative url.
For example:
app/assets/stylesheets/template/settings.less
@my-background = asset-path('my-image.png');
app/assets/stylesheets/template/header.less
background-image: url(@my-background)
this will output the following:
background-image: url(template/"/assets/my-image.png");
The text was updated successfully, but these errors were encountered: