From 7104a97f34bd518c865b52c070298120ebb14a33 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Wed, 2 Oct 2019 22:22:11 +0200 Subject: [PATCH] Use etag --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ed7ac89b..d0e51e92 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -837,7 +837,8 @@ const generateTestSamplesTask = function() { function createSimpleServer(rootDir, port) { const server = http.createServer((request, response) => { return serveHandler(request, response, { - public: rootDir + public: rootDir, + etag: true }); });