We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c74fc4 commit 2813c8cCopy full SHA for 2813c8c
server/index.js
@@ -106,7 +106,9 @@ app.use(addSiteIsolationForIndex);
106
app.use('/frameworks', express.static(frameworkDirectory))
107
app.use('/webdriver-ts-results', express.static(webDriverResultDirectory))
108
app.use('/css', express.static(path.join(frameworkDirectory, '..', 'css')))
109
-
+app.get('/index.html', async (req, res, next) => {
110
+ res.sendFile(path.join(__dirname,'..', 'index.html'));
111
+})
112
app.get('/ls', async (req, res) => {
113
let t0 = Date.now();
114
let frameworks = await loadFrameworkVersionInformation();
0 commit comments