Megaroeny
Megaroeny

Reputation: 827

Using LESS source map files in VS 2010

I'm using Visual Studio 2010. I'm also using the extension/plug-in Mindscape's Web Workbench. It allows you to use LESS in VS, as well as compile and generate source map files. I've never used a source map file, but I know what they do.

My issue is, how do I get my project to use it when I run the page? Do I need to include it in the <head>? Or include it somewhere else?

Thanks for helping a noobie out.

Upvotes: 0

Views: 115

Answers (1)

seven-phases-max
seven-phases-max

Reputation: 11820

For the moment only Chrome seems to support sourcemaps with CSS. See Working with CSS Preprocessors for how to use them there.

Update: Firefox (v.29+) now supports CSS sourcemaps too. See Live Editing Less in the Developer Tools

Upvotes: 1

Related Questions