フロントエンド開発の先端を突っ走るNext.js
next.js アプリの初期化( npx create-next-app@latest <アプリ名> ) または yarn create next-app <アプリ名> または bun create next-app <アプリ名> )

Next.js で 警告「Skipping auto-scroll behavior due to `position: sticky` or `position: fixed` on element」

● Next.js で 警告「Skipping auto-scroll behavior due to position: sticky or position: fixed on element」が出る場合の対応

router.push(`/mypage`);

  ↓

router.push(`/mypage`, { scroll: false });
No.2557
10/03 17:30

edit