debug |
Show more verbose logging? |
false |
dest |
Destination directory to output the compiled .css files. |
Same directory as less source files. |
force |
Always re-compile less files on each request. |
false |
once |
Only recompile once after each server restart. Useful for reducing disk i/o on production. |
false |
pathRoot |
Common root of the source and destination. It is prepended to both the source and destination before being used. |
null |
postprocess |
Object containing functions relevant to postprocessing data. |
|
postprocess.css |
Function that modifies the compiled css output before being stored. |
function(css, req){...} |
preprocess |
Object containing functions relevant to preprocessing data. |
|
preprocess.less |
Function that modifies the raw less output before being parsed and compiled. |
function(src, req){...} |
preprocess.path |
Function that modifies the less pathname before being loaded from the filesystem. |
function(pathname, req){...} |
preprocess.importPaths |
Function that modifies the import paths used by the less parser per request. |
function(paths, req){...} |
render |
Options for the less render. See the "render Options" section below. |
… |
storeCss |
Function that is in charge of storing the css in the filesystem. |
function(pathname, css, req, next){...} |
cacheFile |
Path to a JSON file that will be used to cache less data across server restarts. This can greatly speed up initial load time after a server restart - if the less files haven't changed and the css files still exist, specifying this option will mean that the less files don't need to be recompiled after a server restart. |
|