import type { AppRouteRecordRaw } from '/@/router/types'; import { LAYOUT, EXCEPTION_COMPONENT, PAGE_NOT_FOUND_NAME, } from '/@/router/constant'; // 404 on a page export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = { path: '/:path(.*)*', name: PAGE_NOT_FOUND_NAME, component: LAYOUT, meta: { title: 'ErrorPage', hideBreadcrumb: true, hideMenu: true, }, children: [ { path: '/:path(.*)*', name: PAGE_NOT_FOUND_NAME, component: EXCEPTION_COMPONENT, meta: { title: 'ErrorPage', hideBreadcrumb: true, hideMenu: true, }, }, ], };