Ajmal Ahamed
Results
2
comments of
Ajmal Ahamed
Hi ,i also had the same issue what helped me is the following: `e.Response.Headers.Add("Access-Control-Allow-Origin", "*");` `e.Response.Headers.Add("Access-Control-Allow-Methods", "GET, POST");` `e.Response.Headers.Add("Access-Control-Allow-Headers", "Content-Type");` hope it helps
I've faced this issue and got this working with the following versions ``` "@sparticuz/chromium": "^130.0.0", "puppeteer-chromium-resolver": "^23.0.0", "puppeteer-core": "^23.7.1" ``` Here is my code ``` "use strict"; const puppeteer =...