From 35b0769301d6e4955ab6813310532f5a26aecd40 Mon Sep 17 00:00:00 2001 From: gabestein Date: Fri, 12 Jun 2026 11:05:23 -0400 Subject: [PATCH] update server middleware path to use hono conventions --- server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.ts b/server.ts index f64f12d..f5a93f5 100644 --- a/server.ts +++ b/server.ts @@ -136,7 +136,7 @@ app.use('/api/admin/explore-*', async (c, next) => { }) // --- ARK resolution middleware --- -app.use('/ark\\:*', arkMiddleware) +app.use('/:arkpath{ark:.*}', arkMiddleware) // Dev only: re-evaluate converted subapps through Vite on each API request. // Falls through to next() if the fresh router doesn't match the URL,