stackoverflowI am trying to create a source map with lessc so I am able to debug css in chrome. I am using the terminal.
Unfortunately does the generated file contain wrong file paths. It seems it does mix up relative paths with absolute paths.
My command:
lessc --source-map=sites/all/themes/bootstrap_base/css/index.css.map
--source-map-basepath=sites/all/themes/bootstrap_base/css
sites/all/themes/bootstrap_base/less/style.less
sites/all/themes/bootstrap_base/css/style.css
As a result my paths look like this:
../less//Volumes/DATA/WORK/RESOURCES/WORKSPACE/MAMP_HTDOCS/BASE.drupal/sites/all/themes/bootstrap_base/bootstrap/less/normalize.less
What I am doing wrong?
Thanks