@userfrosting/sprinkle-core
Version:
Core Sprinkle for UserFrosting
17 lines (16 loc) • 368 B
TypeScript
/**
* Default error routes.
*
* N.B.: The first of these routes serve as a catch-all, so 404 not found must
* be first.
*/
declare const _default: {
path: string;
name: string;
meta: {
title: string;
description: string;
};
component: () => Promise<typeof import("../views/Page404NotFound.vue")>;
}[];
export default _default;