From b591411d10d82df1952ea67b999962c44d0a0147 Mon Sep 17 00:00:00 2001 From: Martin Berka Date: Thu, 7 May 2026 14:52:42 +0200 Subject: [PATCH] =?UTF-8?q?test:=20oprava=20Playwright=20test=C5=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/index.ts b/server/src/index.ts index ee77e80..e35e6d9 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -201,7 +201,7 @@ app.use("/api/changelogs", changelogRoutes); app.use("/api/groups", groupRoutes); app.use("/api/stores", storeRoutes); -app.get('*', (_req, res) => { +app.get('*splat', (_req, res) => { res.sendFile(path.join(process.cwd(), 'public', 'index.html')); });