0.0.4 • Published 5 years ago

gatsby-plugin-fixhash v0.0.4

Weekly downloads
26
License
MIT
Repository
github
Last release
5 years ago

Fixhash

fixes the hash scroll-to function that is a known issue with reach router

Install

yarn add gatsby-plugin-fixhash

Use

in gatsby-config.js

plugins: [
  {
    resolve: `gatsby-plugin-fixhash`,
    options: {
      offsetY: 20 // number, optional offset
      scrollToOptions : {
        // see: https://developer.mozilla.org/en-US/docs/Web/API/ScrollToOptions
        behavior: `smooth`
      }
    }
  }
];