Chris Kanich

Results 19 comments of Chris Kanich

FWIW I ran into this issue and just used `unlink` on a directory and it worked as I expected it to (equivalent to `rm -rf`). Looking at the implementation, this...

Running into the same problem - was able to workaround by moving the built (e.g. with astro, `./dist/*`) directory subtree into a separate parent directory that doesn't include `package.json` or...

> +1 for this, for a different use case. Using uv virtual environments with Cursor, Cursor appears to follow the symlink and give me the wrong environment. I'm also following...

For this use case you'd need to build something using [session storage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) on top of the per-browser-profile sessions. If you gave every new tab its own UUID (or similar) when...

I haven’t looked at the code recently, but most of the effort in creating a session abstraction like this is coupled to the storage and updating of the server side...

Thanks! I've got it working in my prod fork, mainly trying to contribute and not deal with conflicts when I update later on.

same issue with [open-webui](https://github.com/open-webui/open-webui) (Brave doesn't work, Chrome does) possibly related: https://github.com/brave/brave-browser/issues/15410

I did something very similar - basically monkey patched fetch and `Request`, super unclean but got the job done: https://gist.github.com/kaytwo/d5e553a6fce20e28f6d5573a520fb525 As for a pull request - I haven't looked at...

tbh I never used it in prod, I gave up and switched to Vercel w/full node lambdas and that solved the problem. Hopefully #3569 lands and fixes it!