regnaio

Results 37 comments of regnaio

Can we please have orange? @fatih

Thank you, @ianpurvis! Just merged ammo.js master into this PR branch

@sam-gc, I'm already using `signInWithPopup`. `signInWithPopup` fails when using the headers on your .html page due to some `` issue: ``` Cross-Origin-Embedder-Policy: require-corp Cross-Origin-Opener-Policy: same-origin Cross-Origin-Resource-Policy: same-origin ``` ![Screenshot (4754)](https://user-images.githubusercontent.com/65579333/180502394-135c7f9a-99d3-41b1-a373-69cbbc57ca74.png)...

@sam-gc As https://stackoverflow.com/questions/69197475/firebase-auth-breaks-with-cross-origin-isolation-i-e-when-using-cross-origin-r suggested, maybe the solution is: > It seems like the root issue is that firebase needs to set a header on their side ?

@sanex3339 Sorry to bother, and thank you for all of your time and help. I was curious about the following: I cloned your repo locally, merged https://github.com/javascript-obfuscator/javascript-obfuscator/pull/916 with `master`, upgraded...

Just tried out sanex3339's merge of #916! Seems to work perfectly for classes 😄

It can work in Docker WSL, but only expose TCP (HTTP or WebSocket) ports, don't expose UDP ports, and do not use `--net host` (instead use `-p :` for your...

In service-worker.ts, does replacing the function fetchAndCache with this resolve the issue? ``` async function fetchAndCache(request: Request) { const cache = await caches.open(`offline${timestamp}`); try { let response = await cache.match(request);...

Ah yes, I'm also seeing that prefetches are showing duplicate fetches in the Chrome Network tab

> same result running the examples on elastic beanstalk. i'm guessing there are a range of ports that need to be exposed for webRTC to work... how do I find...