How to weed out large files in your Gatsby project
Sam Larsen Disney asked on Twitter:
It turns out there is not:
However, when I have experienced sharp processing hanging, there is always a huge image file hanging around somewhere. Not sure how large is large, but to find your larger files, you can run this query:
query MyQuery {
allFile(sort: { order: DESC, fields: size }) {
nodes {
size
prettySize
relativePath
}
}
}
And in doing so myself, I see last year's Christmas card/drawing could be a tad bit smaller 🎄
All the best,
Queen Raae