1
1

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 1 year has passed since last update.

nextのwindows undefind問題

Last updated at Posted at 2023-04-18

解決方法

Next.jsのdynamic関数を使用して、ランタイム時にContentコンポーネントを動的に読み込んでいます。

import dynamic from 'next/dynamic'

const Content = (props) => {
  ....
  }
  
  const DynamicContent = dynamic(
    {
      loader: async () => Content,
    },
    { ssr: false }
  )

説明

DynamicContentコンポーネントは動的に読み込まれ、ページがクライアントでレンダリングされるときにのみ読み込まれます。これにより、ページの初期読み込み時間が短縮され、パフォーマンスが向上します

loader

コンポーネントを非同期でロードする loader 関数を含むオブジェクト。
この場合、loader関数は async/await を使用してContentコンポーネントを読み込んでいます。

option

オプションの構成オブジェクト。この場合、ssr オプションは false に設定されています。
ssrオプションがfalseに設定されているため、DynamicContentコンポーネントはサーバーサイドレンダリングの際にはレンダリングされず、クライアントサイドでのみレンダリングされます。

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?