@userfrosting/sprinkle-core
Version:
Core Sprinkle for UserFrosting
42 lines (41 loc) • 872 B
JavaScript
//#region app/assets/routes/index.ts
var e = [
{
path: "/:pathMatch(.*)*",
name: "NotFound",
meta: {
title: "ERROR.404.TITLE",
description: "ERROR.404.DESCRIPTION"
},
component: () => import("./Page404NotFound-Bx7Jn42s.js")
},
{
path: "/:pathMatch(.*)*",
name: "Unauthorized",
meta: {
title: "ERROR.401.TITLE",
description: "ERROR.401.DESCRIPTION"
},
component: () => import("./Page401Unauthorized-CIO5BYTu.js")
},
{
path: "/:pathMatch(.*)*",
name: "Forbidden",
meta: {
title: "ERROR.403.TITLE",
description: "ERROR.403.DESCRIPTION"
},
component: () => import("./Page403Forbidden-D1mnytrM.js")
},
{
path: "/:pathMatch(.*)*",
name: "Error",
meta: {
title: "ERROR.TITLE",
description: "ERROR.DESCRIPTION"
},
component: () => import("./PageError-xYPsdBSc.js")
}
];
//#endregion
export { e as default };