levimk

Results 2 comments of levimk

Hi! I'm also getting the same issue. **Node Version**: `v20.14.0` **NPM version**: `10.8.1` **Error**: ``` TypeError: Unknown file extension ".png" for /Users/levimk/code/learning/web-auth/playground/app/assets/user.png TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".png" for /Users/levimk/code/learning/web-auth/playground/app/assets/user.png...

In the meantime, I'm just going to change ```ts `return imageId ? `/resources/user-images/${imageId}` : userFallback` ``` to ```ts `return imageId ? `/resources/user-images/${imageId}` : null` ``` It just means the user...