use-link-prefetch

A highly simple library that fetches multiple links at once. > To be used with **Next.js only**

Usage no npm install needed!

<script type="module">
  import useLinkPrefetch from 'https://cdn.skypack.dev/use-link-prefetch';
</script>

README

image

use-prefetch-link

A highly simple library that fetches multiple links at once.

To be used with Next.js only

NPM Downloads JavaScript Style Guide Size without zipping License Types included

Installation

npm i use-prefetch-link
yarn add use-prefetch-link

Usage 📖

import { usePrefetch } from 'use-link-prefetch'

const Page = () => {

  const router = usePrefetch(['/dashboard', '/support'])

  return (
    <div>
      Hello world
    </div>
  )
}

export default Page