10cheon00 / drf-practice

0 stars 0 forks source link

changed global mixin to local mixin, add 404 redirection. #4

Closed 10cheon00 closed 3 years ago

10cheon00 commented 3 years ago

이전에 댓글달았던 것처럼 지역 믹스인으로 깔끔하게 바꿨다. 그리고 이상한 url로 접근할 경우 404 redirect가 일어나도록 추가했다. router/index.js에 '/NotFound' 경로를 추가하고, NotFound 컴포넌트가 렌더되도록 설정했다. 명시된 path에 맞는 url가 없다면 patchMatch로 연결되어 redirect: '/NotFound'를 통해 리다이렉트되어 404페이지가 보인다.