유튜브블로그Top 10
내 프로필

데브허브 안내
소개업데이트 소식

데브허브 커뮤니티

Next.js Router.Push Is Too Slow (Change Search Params) #nextjs #nextjs13 #nextjs15

Coding in Flow

2024. 12. 16.

0

#frontend
  • Next.js의 router.push 함수는 URL 검색 매개변수 변경 시 느릴 수 있다. ⏱️
  • 서버 요청이 발생하는 router.push 대신, history.pushState 함수를 사용하여 서버 요청 없이 URL 검색 매개변수를 바로 변경할 수 있다. 🔄
  • history.pushState는 사용자 경험을 향상시키고 페이지 로딩 시간을 단축시킨다. 🚀

Recommanded Videos