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 }); });