useEffect(() => {
router.beforePopState(({ url, as, options }) => {
if (as !== router.asPath) {
window.history.pushState('', '');
router.push(router.asPath);
return false
}
return true
})
return () => {
router.beforePopState(() => true);
};
}, [])
'FE > Next' 카테고리의 다른 글
[ Next ] api 통신 시 cors에러 해결 방법 (0) | 2023.03.21 |
---|