Alex Dima 5 years ago
parent
commit
7104a97f34
1 changed files with 2 additions and 1 deletions
  1. 2 1
      gulpfile.js

+ 2 - 1
gulpfile.js

@@ -837,7 +837,8 @@ const generateTestSamplesTask = function() {
 function createSimpleServer(rootDir, port) {
 function createSimpleServer(rootDir, port) {
 	const server = http.createServer((request, response) => {
 	const server = http.createServer((request, response) => {
 		return serveHandler(request, response, {
 		return serveHandler(request, response, {
-			public: rootDir
+			public: rootDir,
+			etag: true
 		});
 		});
 	});
 	});