File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,19 @@ export function NoSSR({
13
13
return < > { state } </ > ;
14
14
}
15
15
16
+ export class ClientOnlyError extends Error {
17
+ constructor ( ) {
18
+ super ( "client only" ) ;
19
+ }
20
+ }
21
+
16
22
export function lazy < T > (
17
23
importFunc : ( ) => Promise < { default : React . ComponentType < T > } >
18
24
) : React . ComponentType < T > {
19
25
const LazyComponent = oldLazy ( importFunc ) ;
20
26
return ( props : any ) => {
21
27
if ( typeof window === "undefined" ) {
22
- throw new Error ( "client only" ) ;
28
+ throw new ClientOnlyError ( ) ;
23
29
}
24
30
return < LazyComponent { ...props } /> ;
25
31
} ;
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import { NJSON } from "next-json";
3
3
import { statSync } from "node:fs" ;
4
4
import { join , relative } from "node:path" ;
5
5
import { renderToReadableStream } from "react-dom/server" ;
6
+ import { ClientOnlyError } from "./client" ;
6
7
7
8
export class StaticRouters {
8
9
readonly server : FileSystemRouter ;
@@ -41,6 +42,7 @@ export class StaticRouters {
41
42
bootstrapModules,
42
43
context,
43
44
onError = ( error , errorInfo ) => {
45
+ if ( error instanceof ClientOnlyError ) return ;
44
46
console . error ( error , errorInfo ) ;
45
47
} ,
46
48
} : {
You can’t perform that action at this time.
0 commit comments