Jungmin

Results 10 comments of Jungmin

Sorry for my late reply, I was trying to configure what the problem is, and I guess that Vite production builder does not support media query ``` @page { size:...

Thanks for your fast reply. I didn't look at any documentation, it was just my guess and I was wrong. Media query doesn't affect to this problem. I really have...

Thanks for your help, but I just decided to replace css files as `style` props of the html elements. Since I don't have much time for the deadline, I should...

Sorry for my late reply, I think 2nd solution looks reasonable because I'm currently using Electron API waiting for the `contentWindow` to be loaded like the example below. ``` typescript...

Currently, I'm using images from AWS S3, so I think `react-to-print` needs time to download images from S3. Can you allow users to set value for timeout?? If they don't,...

Thanks for your support. I think because I'm passing base64 encoded string to src of ``, images are not cached so it takes some time. I should try to find...

Good News! Since I started to pass AWS S3 download url instead of base64 encoded string to ``, it works! It definitely seems that passing base64 encoded string was a...

Here it is! [dataURLExample.txt](https://github.com/gregnb/react-to-print/files/9230453/dataURLExample.txt)

In addition, how can I put local images url to ``? I tried to put local image files like this, ``` typescript setObjectiveUrl(URL.createObjectURL(image)) ``` but it shows up like this,...