Skip to content

Commit 2f09a87

Browse files
committed
add ClientSideOnlyError
1 parent 60c16fa commit 2f09a87

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

client.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,19 @@ export function NoSSR({
1313
return <>{state}</>;
1414
}
1515

16+
export class ClientOnlyError extends Error {
17+
constructor() {
18+
super("client only");
19+
}
20+
}
21+
1622
export function lazy<T>(
1723
importFunc: () => Promise<{ default: React.ComponentType<T> }>
1824
): React.ComponentType<T> {
1925
const LazyComponent = oldLazy(importFunc);
2026
return (props: any) => {
2127
if (typeof window === "undefined") {
22-
throw new Error("client only");
28+
throw new ClientOnlyError();
2329
}
2430
return <LazyComponent {...props} />;
2531
};

index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { NJSON } from "next-json";
33
import { statSync } from "node:fs";
44
import { join, relative } from "node:path";
55
import { renderToReadableStream } from "react-dom/server";
6+
import { ClientOnlyError } from "./client";
67

78
export class StaticRouters {
89
readonly server: FileSystemRouter;
@@ -41,6 +42,7 @@ export class StaticRouters {
4142
bootstrapModules,
4243
context,
4344
onError = (error, errorInfo) => {
45+
if (error instanceof ClientOnlyError) return;
4446
console.error(error, errorInfo);
4547
},
4648
}: {

0 commit comments

Comments
 (0)