1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Next.jsのLinkとStorybookで出るCannot read property 'prefetch' of nullエラーの対処

Last updated at Posted at 2021-05-24

Next.jsのLinkをStorybookで使おうとすると、

Cannot read property 'prefetch' of null

というエラーになる。

これの対象法についてです。

画面はこんな感じです。
スクリーンショット 2021-05-24 17.57.52.png

環境

$ node -v
v14.11.0

$ npm -v 
6.14.8

$ npm list --depth=0 ※関係ありそうなやつのみ抜粋
├── @storybook/react@6.1.3
├── next@10.0.2


prefetchとは

プリフェッチというのは、利用が予想されるものを読み込んでおくことです。
Next.jsのLinkコンポーネントではデフォルトでリンク先のページのコードをバックグラウンドで読み込むことで、素早いページ遷移を実現しています。

解決方法1

LinkSample.tsx
import React, { VFC } from "react";
import Link from "next/link";

const LinkSample: VFC = () => {
  return (
    <Link href={"/"} prefetch={false}>
      <span>サンプル</span>
    </Link>
  );
};

export default LinkSample;

prefetchはデフォルトだとtrueになっているのですが、不要であればfalseにしてしまうことで解決できます。

解決方法2

LinkSample.tsx
import React, { VFC } from "react";
import Link from "next/link";

const LinkSample: VFC = () => {
  return (
    <Link href={"/"} prefetch={!process.env.STORYBOOK}>
      <span>サンプル</span>
    </Link>
  );
};

export default LinkSample;

もう1つの解決方法はstorybookの環境変数を利用するパターンです。
process.env.STORYBOOKはstorybookで動かしている場合にtrueになります。
これを利用して、storybookで動かしている場合のみにfalseにする方法です。

最後に

最初に見た時は、なんだこれ?と思ったので、同じような問題に詰まっている人の助けになれば幸いです。

参考

https://github.com/vercel/next.js/issues/19825
https://github.com/storybookjs/storybook/pull/12997
https://nextjs.org/docs/api-reference/next/link

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?