<!-- For non-English users: It's okay to post in your language, but remember to use English for the body (you can paste the result of Google Translate), and put everything else as attachments. Issues with a non-English body will be DIRECTLY CLOSED until it's updated. --> ### Describe the bug Types for `event.context.logtoUser` are not fully available in Nuxt server; thus, type checking doesn't work properly. ### Expected behavior N/A ### How to reproduce? N/A ### Context N/A ### Fix This can be fixed by extending the `H3EventContext`: ```ts declare module 'h3' { interface H3EventContext { logtoUser: UserInfoResponse | IdTokenClaims | undefined; } } ``` --- Sorry if this issue is a bit lacking. :)