Reference
Authentication
Authenticate requests to deployed Dynamic Apps with Hono middleware, route guards, and application-level authorization before handlers run.
Authentication
Use normal Hono middleware to authenticate requests before they reach deployed apps:
server.use("/apps/*", authMiddleware);
server.route("/apps", appsRouter);