1.2.0 • Published 3 years ago

@clipchamp/gatsby-plugin-seo-export v1.2.0

Weekly downloads
66
License
MIT
Repository
github
Last release
3 years ago

gatsby-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-export

Add 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"
}