Skip to content

Commit 2813c8c

Browse files
committed
fix 1105
1 parent 0c74fc4 commit 2813c8c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ app.use(addSiteIsolationForIndex);
106106
app.use('/frameworks', express.static(frameworkDirectory))
107107
app.use('/webdriver-ts-results', express.static(webDriverResultDirectory))
108108
app.use('/css', express.static(path.join(frameworkDirectory, '..', 'css')))
109-
109+
app.get('/index.html', async (req, res, next) => {
110+
res.sendFile(path.join(__dirname,'..', 'index.html'));
111+
})
110112
app.get('/ls', async (req, res) => {
111113
let t0 = Date.now();
112114
let frameworks = await loadFrameworkVersionInformation();

0 commit comments

Comments
 (0)