Skip to content

Commit

Permalink
[minor] Made options.index and options.dot configurable in static plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Oct 23, 2012
1 parent e44450a commit 3d07c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/flatiron/plugins/static.js
Expand Up @@ -43,13 +43,13 @@ exports.attach = function (options) {
//
// Default overrides
//
options.index = false;
options.dot = false;
options.passthrough = true;

//
// Url for static server
//
options.index = options.index || false;
options.dot = options.dot || false;
options.url = options.url || '/';

//
Expand Down

0 comments on commit 3d07c61

Please sign in to comment.