Nathan Waters

Results 6 comments of Nathan Waters

Fixed it with an override for now. The problem is p-queue and mem are not exported properly... `import PQueue from 'p-queue'` should be `import PQueue from 'p-queue/dist'` `import mem from...

@ramatronics nah I'll leave that to the maintainer. Probably a much better way to do this but here's what I did... 1. Copy the code in `node_modules/notion-utils/build/index.js` 2. Paste somewhere...

If the current version supports multiple rules (not paths), how do you add multiple tls hostnames? This doesn't work (Cloudflare DNS backend doesn't add the CNAME's). *Edit: solved lol, the...

+1 cloudflare workers. I've emailed their team the repo link

This works for me. Just adapt to suit axios... ``` const [loading, setLoading] = useState(true); const [JSON, setJSON] = useState([]); useEffect(() => { fetch(url).then(async (x) => { const data =...