in server.js [84:93]
static sendRootIndex(response) {
const rootIndex = `${root}/index.html`;
fs.stat(rootIndex, (error, stats) => {
if (stats) {
Server.sendFile(response, rootIndex, 'text/html', stats.size);
} else {
Server.sendFileNotFound(response);
}
});
}