Results 8 comments of aab

I thought changing the region isn't possible as documented on [firebase docs](https://firebase.google.com/docs/functions/locations#http_and_client-callable_functions)? > Important: If you are using HTTP functions to [serve dynamic content for Firebase Hosting](https://firebase.google.com/docs/hosting/functions), you must use...

In my case the error looks like this ``` The inferred type of 'Foo' cannot be named without a reference to '.pnpm/@[email protected]_.../node_modules/@morphic-ts/model-algebras/lib/types'. This is likely not portable. A type annotation...

I've got it working on ubuntu-22.04 by setting the field `defaults.chromeLaunchConfig.executablePath` as mentioned by @kussmaul, set with value which solved [similar issue](https://github.com/actions/runner-images/issues/6738#issuecomment-1365198751). ```json { "defaults": { "chromeLaunchConfig": { "executablePath": "/usr/bin/google-chrome"...

Following script works for me (tested on contabo). Should we add flake support to nixos-infect? ```nix curl https://raw.githubusercontent.com/elitak/nixos-infect/master/nixos-infect \ | NIX_CHANNEL=nixos-23.05 NO_REBOOT=true bash -x \ && { cat > /etc/nixos/flake.nix

The code intentionally have `?` and `&` at the end of the URL even without store settings passed, which is still a valid URL. This is done to avoid complexity...

@phaer Just rebased. Could you check?

I can confirm the same behavior occurs when `Bun.serve` is run with `unix` parameter. I was able to workaround this by invoking `fs.chmodSync(unixPath, 0o775);` after `Bun.serve`