AlkantarClanX12

Your IP : 52.15.37.74


Current Path : /opt/alt/alt-nodejs12/root/lib/node_modules/npm/docs/src/components/
Upload File :
Current File : //opt/alt/alt-nodejs12/root/lib/node_modules/npm/docs/src/components/scripts.js

import React from 'react'

const IS_STATIC = process.env.GATSBY_IS_STATIC

const Scripts = () => {
  // Workaround: Make links work on the static html site
  if (IS_STATIC) {
    return (
      <script
        dangerouslySetInnerHTML={{
          __html: `
          var anchors = document.querySelectorAll(".sidebar a, .documentation a")
          Array.prototype.slice.call(anchors).map(function(el) {
            if (el.href.match(/file:\\/\\//)) {
              el.href = el.href + "/index.html"
            }
          })
          `
        }}
      />
    )
  }

  return null
}

export default Scripts