Community Plugin
View plugin on GitHubgatsby-plugin-seo-export
Extracts common SEO tags from pages, and creates csv files for each template containing the path alongside the SEO tags.
Usage
Install the plugin:
npm i @clipchamp/gatsby-plugin-seo-exportAdd it to your gatsby-config.js
plugins: [
  {
      resolve: `@clipchamp/gatsby-plugin-seo-export`,
  },
]Create a script in your package.json that sets the SEO_EXPORT environment variable to true
"scripts": {
    "seo": "SEO_EXPORT=true npm run build"
}