I'm facing an issue while generating PDF from html using ironpdf on Azure web app.
This is the exception I get:
Exception details:
Error while deploying Chrome dependencies. To learn how to solve this issue please read https://iron.helpscoutdocs.com/article/166-error-while-deploying-chrome-dependencies [Issue Code IRONPDF-CHROME-DEPLOYMENT-ERROR]
I followed the steps given in documentation but not able to crack this,
Code is working fine in local environment, I'm facing the issue in Azure web app.
This is the code:
using IronPdf
var Renderer = new HtmlToPdf();
var PDF = Renderer.RenderHtmlAsPdf(fullhtml);
It is throwing the error at the last line shown - can someone guide me how to successfully deploy this to Microsoft Azure?