-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next.js 15 & React 19 마이그레이션 #255
Comments
react-pdfnext 15에서 server component에서 ssr false옵션의 dynamic import 사용 불가능
기존에 react-pdf를 사용하기 위해서 ssr false로 dynamic import를 서버컴포넌트에서 사용하고 있었음.
바로 에러 발생. 로컬에서는 문제없는 것 같아서 dynamic import 제거 후 vercel 배포 시도.
어림도 없지. 이게 무람. react-pdf의 pdfjs-dist는 canvas의 dependency로 사용
근데 canvas는 node v22에서 작동하지않음. vercel issue에 뭔가 그 전에 install을 하는 해결방법은 있긴한데... 저게 nice한 방법? no. react-pdf v9에서 Promise.withResolvers를 사용하려고 node 22를 사용. 그냥 내리고 client component에서 dynamic import ssr false로 사용하도록 새로운 컴포넌트 생성 후 사용. |
The text was updated successfully, but these errors were encountered: