diff --git a/app/gateway-api/src/server.ts b/app/gateway-api/src/server.ts index b1a3f9df..056120af 100644 --- a/app/gateway-api/src/server.ts +++ b/app/gateway-api/src/server.ts @@ -109,7 +109,7 @@ export const createGatewayApiServer = async () => { profiles, secret: config.gameTokenSecret, }); - app.get(config.trpcPath.replace(/\/trpc\/?$/u, '/navigation'), async (_request, reply) => { + app.get('/navigation', async (_request, reply) => { void reply.header('Cache-Control', 'no-store'); return navigationConfig.get(); });