This commit is contained in:
Konstantin Wohlwend 2025-07-30 12:22:09 -07:00
parent 6c55e3da66
commit cecb520f52
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
import Link from "next/link";
export default function NotFound() {
return (
<div>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
<Link href="/">Return Home</Link>
</div>
);
}

View File

@ -352,7 +352,7 @@ const organizationConfigDefaults = {
},
domains: {
allowLocalhost: false,
allowLocalhost: true,
trustedDomains: (key: string) => ({
baseUrl: undefined,
handlerPath: '/handler',