diff --git a/src/realms/api/router.ts b/src/realms/api/router.ts index a4fcc2c..b613b86 100644 --- a/src/realms/api/router.ts +++ b/src/realms/api/router.ts @@ -13,4 +13,4 @@ api.get('/robots.txt', async c => c.text(Strings.ROBOTS_TXT_API)); api.get('/:handle', profileRequest); -api.all('*', async c => c.redirect(Constants.API_DOCS_URL, 302)); \ No newline at end of file +api.get('/', async c => c.redirect(Constants.API_DOCS_URL, 302)); \ No newline at end of file