forked from coolaj86/goldilocks.js
bugfix 405 Method Not Allowed
This commit is contained in:
parent
c8db5bad73
commit
2bd79007de
22
app.js
22
app.js
|
@ -44,17 +44,19 @@ module.exports = function (opts) {
|
||||||
this.__write(livereload);
|
this.__write(livereload);
|
||||||
this.__write(data, enc, cb);
|
this.__write(data, enc, cb);
|
||||||
};
|
};
|
||||||
serve(req, res, function (err) {
|
|
||||||
if (err) { return done(err); }
|
function serveStatic() {
|
||||||
index(req, res, function (err) {
|
serve(req, res, function (err) {
|
||||||
if (err) { return done(err); }
|
if (err) { return done(err); }
|
||||||
if (opts.expressApp) {
|
index(req, res, done);
|
||||||
opts.expressApp(req, res, done);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
done();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
|
|
||||||
|
if (opts.expressApp) {
|
||||||
|
opts.expressApp(req, res, serveStatic);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
serveStatic();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue