This commit is contained in:
Alex Dima 2019-10-02 22:22:11 +02:00
parent e0636d94ff
commit 7104a97f34
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0

View file

@ -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
});
});