diff --git a/lib/Server.js b/lib/Server.js index 166c02f6c6..4b810fe887 100644 --- a/lib/Server.js +++ b/lib/Server.js @@ -401,7 +401,7 @@ class Server { return next(); } - serveIndex(item)(req, res, next); + serveIndex(item, { icons: true })(req, res, next); }); }); } else if ( @@ -414,7 +414,7 @@ class Server { return next(); } - serveIndex(contentBase)(req, res, next); + serveIndex(contentBase, { icons: true })(req, res, next); }); } }