Skip to content

Commit cecb520

Browse files
committed
Fixes
1 parent 6c55e3d commit cecb520

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/src/app/not-found.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ const organizationConfigDefaults = {
352352
},
353353

354354
domains: {
355-
allowLocalhost: false,
355+
allowLocalhost: true,
356356
trustedDomains: (key: string) => ({
357357
baseUrl: undefined,
358358
handlerPath: '/handler',

0 commit comments

Comments
 (0)