pull/1616/head
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
1 changed files with 2 additions and 1 deletions

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