LoginSignup
4
2

More than 3 years have passed since last update.

Next.jsでFirebase analyticsを使用する場合の注意

Posted at

概要

Next.jsにanalyticsを導入時に起きた問題を投稿します。

現象

Next.jsなどでanalyticsを使用する際にサーバー側でエラーが発生する。

理由

analyticsの内部でwindowが呼ばれていたため

解決法

if (process.browser) {
    firebase.analytics().logEvent(<イベント名>);
}
4
2
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
4
2