[Next.js] Url 객체를 사용한 라우팅
Next.js의 라우팅을 Url object를 사용하여 페이지 이동시 예상한대로 작동하지 않았다고 합니다. stackoverflow.com/q/64172527/5570106 Unexpected behaviour when use Next.js router push with URL object According to the Next.js documentation, I can use the router push function with a URL object to route dynamic paths, like this example : import { useRouter } from 'next/router' export default func... stackoverflow.com 답변으로 다음과 같이 달았습니다..
2020.12.26