all repos — stealth-developers @ 8ffaace39d0417d7ac8f526ef960789cba8e4c67

web: not found page
vi did:web:vt3e.cat
Wed, 01 Jul 2026 03:32:48 +0100
commit

8ffaace39d0417d7ac8f526ef960789cba8e4c67

parent

a2754f3952a99c48fc44ae7b0284c732b9b7cb05

2 files changed, 9 insertions(+), 0 deletions(-)

jump to
M apps/web/src/router/index.tsapps/web/src/router/index.ts

@@ -45,6 +45,11 @@ path: "/privacy",

name: "Privacy", component: () => import("../views/PrivacyPolicy.vue"), }, + { + path: "/:pathMatch(.*)*", + name: "NotFound", + component: () => import("../views/NotFound.vue"), + }, ], });
A apps/web/src/views/NotFound.vue

@@ -0,0 +1,4 @@

+<template> + <h1>404 - Not Found</h1> + <p>whoops, if you're trying to view a ticket, please run `/ticket view [id]` and click the link from there.</p> +</template>