Alex Dima 5 gadi atpakaļ
vecāks
revīzija
7104a97f34
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      gulpfile.js

+ 2 - 1
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
 		});
 	});