new to Gatsby here.
I've followed the Gatsby-image guide and store my photos in an images folder in my project and pull the photos via graphQL from there. It works great locally but I guess that kind of storage is not meant for actually production? As I get the 'failed to load resource error' from the public HTML and blurry images when deployed. From browsing through stack overflow and github it looks like a ton of people run in to this.
So where does everyone store their photos? Just curious for some advice, thanks!
gatsby-source-contentful
that allows you to source your content using GraphQL. Images shouldn't be stored with source code because they're more content than structure, and they will bloat your repo size. Repos should be small (file size wise). - JMadelaine