We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c55e3d commit cecb520Copy full SHA for cecb520
docs/src/app/not-found.tsx
@@ -0,0 +1,11 @@
1
+import Link from "next/link";
2
+
3
+export default function NotFound() {
4
+ return (
5
+ <div>
6
+ <h2>Not Found</h2>
7
+ <p>Could not find requested resource</p>
8
+ <Link href="/">Return Home</Link>
9
+ </div>
10
+ );
11
+}
packages/stack-shared/src/config/schema.ts
@@ -352,7 +352,7 @@ const organizationConfigDefaults = {
352
},
353
354
domains: {
355
- allowLocalhost: false,
+ allowLocalhost: true,
356
trustedDomains: (key: string) => ({
357
baseUrl: undefined,
358
handlerPath: '/handler',
0 commit comments