Reference
Authentication
Authenticating requests to a deployed app.
Authentication
Use normal Hono middleware to authenticate requests before they reach deployed apps:
server.use("/apps/*", authMiddleware);
server.route("/apps", appsRouter);