Alex Dima hace 5 años
padre
commit
7104a97f34
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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
 		});
 	});