mirror of
https://github.com/seejohnrun/haste-server.git
synced 2025-12-13 03:05:55 +00:00
Put staticCache back in
This commit is contained in:
@@ -73,6 +73,7 @@ connect.createServer(
|
||||
});
|
||||
}),
|
||||
// Otherwise, static
|
||||
connect.staticCache(),
|
||||
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge }),
|
||||
// Then we can loop back - and everything else should be a token,
|
||||
// so route it back to /index.html
|
||||
@@ -82,7 +83,6 @@ connect.createServer(
|
||||
next();
|
||||
});
|
||||
}),
|
||||
// And then let static take over
|
||||
connect.static(__dirname + '/static', { maxAge: config.staticMaxAge })
|
||||
).listen(config.port, config.host);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user