How to support gatsby preview with Ghost?

I think you can avoid the extra network request by using [asset].browse with a filter instead of using [asset].read:

const browseParams = {
  filter = `uuid:${post.uuid},
  formats: 'html'
}
1 Like