Alex Dima преди 5 години
родител
ревизия
7104a97f34
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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
 		});
 	});