Hello,
We are currently generating a lot of reports with the following method.
Code: C#
var result = HtmlToPdf.ConvertUrl(url, memoryStream);
The method takes around 30 seconds to generate a 10 page report. Our report don't contain any images, it's plain html with data.
We tested our end point it serves the html instantly (under 1 second).
Is there a configuration or something we could do to improve the performance ?