Web/vue

vue3 404 error redirecting

rockettttman 2023. 3. 6. 18:40

router에서 404처리 시 아래와 같이 해주면 된다.

const routes = [
  {
    path: "/:pathMatch(.*)*",
    redirect: "/404",
  },
  ....//route pages
]