diff --git a/backend/src/index.ts b/backend/src/index.ts index 38bb07383..2a1afc712 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -333,7 +333,9 @@ class Server { if (config.MEMPOOL_SERVICES.ACCELERATIONS) { accelerationRoutes.initRoutes(this.app); } - aboutRoutes.initRoutes(this.app); + if (!config.MEMPOOL.OFFICIAL) { + aboutRoutes.initRoutes(this.app); + } } healthCheck(): void {