Closed Bronco84 closed 2 months ago
This seems to be an implementation issue. If your pdf needs to load images consider use image-resource-path prop to retrieve them correctly.
This seems to be an implementation issue. If your pdf needs to load images consider use image-resource-path prop to retrieve them correctly.
Ah, I see what you mean. Sorry about that. I appreciate your work on the package!
Description:
There's a loading icon
loading-icon.2cb588dc.svg
embedded as a base64-encoded SVG in the code. However, the system is incorrectly referencing it using a relative path, which causes a 404 error.Steps to Reproduce:
Expected Behavior:
The Base64-encoded SVG should be directly used for the loading icon, without requiring any network requests. The browser should display the icon without attempting to retrieve it from the server.
Actual Behavior:
The system attempts to retrieve the loading-icon from a relative path, which results in a 404 error.
Suggested Fix:
Ensure that the Base64-encoded SVG is correctly embedded in the code, and that the image is referenced directly, preventing a failed network request.
Additional context