chris
chris

Reputation: 4867

web essentials 2012 custom directory for less build folder


does anybody know if is possible in web essentials 2012 to create a custom directory for the build folder of less files?
The only option I have there is:

compile to css folder: true/false

Upvotes: 1

Views: 443

Answers (2)

Blaise
Blaise

Reputation: 22212

Then you can try koala to get everything straightened up.

Here is the link.

This documentation shows how to change the output path.

Upvotes: 0

Nermin Dibek
Nermin Dibek

Reputation: 11

it is possible in Web Essentials 2013, by modifying the Web Essentials JSON config:

  "Less": {
    "CompileOnBuild": true,
    "CompileOnSave": true,
    "EnableChainCompilation": true,
    "GenerateSourceMaps": true,
    "MinifyInPlace": false,
    **"OutputDirectory": 'OUTPUT FOLDER',**
    "ShowPreviewPane": true
  },

Upvotes: 1

Related Questions