Removed cache

This commit is contained in:
Marcus Noble 2017-10-15 07:48:59 +01:00
parent f9052e9570
commit 6a45fd1d73
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -24,7 +24,7 @@ const port = process.env.PORT || 8000;
const oneDay = 86400000;
app.use(compress());
app.use(express.static(__dirname + '/build', {maxAge: oneDay * 365}));
app.use(express.static(__dirname + '/build'));
var md = markdown('commonmark', {html: true});
md.parser.use(emoji);