Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Inline Images

Tyler Barnes edited this page Jan 27, 2019 · 2 revisions

Wordsby checks all post data for images and replaces them with local fluid image versions. By default this is only done on the top level of post data to transform the post_content field. If you want to recurse into your ACF fields and replace images that point to your WP install into local fluid images, set recursive to true in the plugin options. You can also pass any image sharp fluid options here as well.

  {
    resolve: "gatsby-plugin-wordsby",
    options: {
      inlineImages: {
        recursive: true,
        maxWidth: 1000
      }
    }
  }
Clone this wiki locally