clean up meta

This commit is contained in:
2023-02-22 20:22:56 +10:00
parent e4cdd25922
commit 72a78ba27b

View File

@@ -336,6 +336,7 @@ export const routes = [
name: "error-internal", name: "error-internal",
meta: { meta: {
title: "Server error", title: "Server error",
hideInEditor: true,
}, },
component: () => import("@/components/errors/Internal.vue"), component: () => import("@/components/errors/Internal.vue"),
}, },
@@ -344,6 +345,7 @@ export const routes = [
name: "forbidden", name: "forbidden",
meta: { meta: {
title: "Forbidden", title: "Forbidden",
hideInEditor: true,
}, },
component: () => import("@/components/errors/Forbidden.vue"), component: () => import("@/components/errors/Forbidden.vue"),
}, },
@@ -352,6 +354,7 @@ export const routes = [
name: "not-found", name: "not-found",
meta: { meta: {
title: "Page not found", title: "Page not found",
hideInEditor: true,
}, },
component: () => import("@/components/errors/NotFound.vue"), component: () => import("@/components/errors/NotFound.vue"),
}, },