The question title pretty much says it all. I don't know how to configure the grunt-contrib-less task that now supports source maps. My expected result is to have Chrome DevTools CSS inspector to point to the Less rules. If possible, it would be ideal that the source maps be inline in the same outputted CSS file to avoid cluttering my workspace with separate source map files.
Thanks
This is my gruntfile.js, it works.
It was imporant to update to grunt-contrib-less v0.9.0 It was also important to use "XXX.css.map" not "XXX.map". And it worked after gave a proper sourcebasepath. Further below i will post excerpts from resulting .map files.
gruntfile.js
This is an excerpt from a .map file generated with lessc which of course works:
This is an excerpt from a .map file generated with grunt-contrib-less 0.9.0 which works too:
kind regards, Stephan