Paul D
Paul D
### Summary Could the main contributors @alexcrichton & @fitzgen be able to say a few words around the general plans / status of the project? ### Additional Details It has...
Hi @Pauan, I've started adding some docs based on my experience of using dominator and also all the gold in the Discord that we get from asking you questions 😄...
### Minimal, reproducible example ```TypeScript import puppeteer from "puppeteer"; const browser = await puppeteer.launch(); const page = await browser.newPage(); await page.setRequestInterception(true); page.on("request", async (request) => { if (request.url().endsWith("favicon.ico")) { await...