問題
Next.jsでビルド時に以下のエラーが表示された。
Type error: Cannot find module 'next/dist/shared/lib/app-router-context' or its corresponding type declarations.
解決方法
NavigateOptionsのimportパスをnext/dist/shared/lib/app-router-context.shared-runtimeに変更することで解決しました。
// ×修正前
import type { NavigateOptions } from 'next/dist/shared/lib/app-router-context';
// ⚪︎修正後
import type { NavigateOptions } from 'next/dist/shared/lib/app-router-context.shared-runtime';