1
0
Alex Dima 5 жил өмнө
parent
commit
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
 		});
 	});