Andy Hamilton
Andy Hamilton
Experiencing the same thing. Seems like a new version of react-pdf/font has been released that contains a breaking change. As the dependencies are listed using `^` npm / yarn will...
@eladonline @RajasekharReddy82 @rishipurwar1 If you're using renderer version `2.1.1` this can be solved relatively easily. Add: ``` "@react-pdf/font": "2.2.0", ``` To your `package.json` dependencies. Then add: ``` "resolutions": { "@react-pdf/font":...
Also the above only worked for me when I made sure `react-pdf/renderer` was pinned to `2.1.0`. So: `"@react-pdf/renderer": "2.1.0",`
@carlobeltrame Is it not possible to fix without upgrading to 3.0.0? This should really be a major version upgrade for `react-pdf/font` if not if it will remove backwards compatibility. This...