fix: add exact path route for index.html to fix vue rendering
Deploy API / deploy (push) Failing after 12s

This commit is contained in:
2026-04-26 21:29:45 +02:00
parent 26619850ff
commit 4bb31fe82a
+1
View File
@@ -60,6 +60,7 @@ app.delete('/api/events/:id', async (c) => {
})
// Statische Dateien (Unser Dashboard)
app.get('/', serveStatic({ path: './public/index.html' }))
app.use('/*', serveStatic({ root: './public' }))
const port = 3000