Skip to content

Commit

Permalink
Issue #60: Disable etags
Browse files Browse the repository at this point in the history
  • Loading branch information
stil4m committed Mar 19, 2017
1 parent d24013d commit 4674ba8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ var app = express();
var expressWs = require('express-ws')(app);
const fs = require('fs');
const fileGatherer = require('../util/file-gatherer');
app.use(express.static(__dirname + '/../public'));
app.use(express.static(__dirname + '/../public', {
etag: false
}));


module.exports = function(config) {
Expand Down

0 comments on commit 4674ba8

Please sign in to comment.