Skip to content
Discussion options

You must be logged in to vote

GitHub has started rate-limiting raw.githubusercontent.com, so pages that hot-link many images from that domain hit the new limit and the server returns HTTP 429—hence the broken thumbnails even though a single image still opens in a new tab.

Quick fix

# instead of this
![logo](https://raw.githubusercontent.com/USER/REPO/branch/img/logo.png)

# do this (move img/ into your Pages site and use a relative path)
![logo](/img/logo.png)

Files served from yourname.github.io aren’t throttled, so everything loads normally again once you commit the move.

Alternatives

  • Keep the images in the repo but swap the URL to a CDN mirror, e.g.
    https://cdn.jsdelivr.net/gh/USER/REPO@branch/img/logo.png
  • Add loa…

Replies: 3 comments 4 replies

Comment options

You must be logged in to vote
1 reply
@Fertmeneses
Comment options

Comment options

You must be logged in to vote
3 replies
@Fertmeneses
Comment options

@nagelfargithub
Comment options

@GTazz
Comment options

Answer selected by Fertmeneses
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Pages Host a static website, right from your repo Question Ask and answer questions about GitHub features and usage
6 participants