We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f67574a commit c4e1e3bCopy full SHA for c4e1e3b
bin/server
@@ -3,6 +3,6 @@
3
var connect = require('connect'),
4
http = require('http');
5
6
-var app = connect().use(connect.static('public-min'));
+var app = connect().use(connect.static('public-min'), { maxAge: 365 * 24 * 60 * 60 * 1000});
7
8
http.createServer(app).listen(process.env.PORT || 3000);
0 commit comments