Andreas Thomas

Results 418 comments of Andreas Thomas

same for us, I duct taped it with docker for now in our case we have a monorepo with the mintlify docs at `/apps/docs`, you need to change that according...

yeah that's super weird /award 150

```ts private async validateBearerToken(token: string): Promise { const validationResponse = await verifyKey(token); if (!validationResponse) return false; if (validationResponse.error) return false; return true; } ``` This is completely insecure and does...

@coderabbitai review