add a comment

This commit is contained in:
Hailey
2025-03-20 14:43:51 -07:00
parent d45ad541ec
commit 65cf369dcc
+1 -1
View File
@@ -15,7 +15,7 @@ export default function (ctx: AppContext, app: Express) {
app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association
app = redirect(ctx, app) // GET /redirect
app = createShortLink(ctx, app) // POST /link
app = root(ctx, app)
app = root(ctx, app) // GET / (redirect to bsky.app on root)
app = shortLink(ctx, app) // GET /:linkId (should go last due to permissive matching)
return app
}