Skip to content

Commit 11f5a59

Browse files
committed
Fix Error: PDFViewer is a web specific API. You're either using this component on Node, or your bundler is not loading react-pdf from the appropriate web build.
1 parent 672f5b9 commit 11f5a59

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/app/page.tsx

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,19 @@ import {
77
View,
88
Document,
99
StyleSheet,
10-
PDFViewer,
1110
Image,
1211
Link,
1312
Font,
1413
} from "@react-pdf/renderer";
14+
import dynamic from "next/dynamic";
15+
16+
const PDFViewer = dynamic(
17+
() => import("@react-pdf/renderer").then((mod) => mod.PDFViewer),
18+
{
19+
ssr: false,
20+
loading: () => <p>Loading...</p>,
21+
}
22+
);
1523

1624
Font.register({ family: "SpaceGrotesk", src: "/fonts/SpaceGrotesk-Bold.ttf" });
1725

0 commit comments

Comments
 (0)