Mikko Ahlroth
Mikko Ahlroth
Just adding a workaround that I use in the meantime, for anyone else that might stumble upon this issue report: ```elixir def get_ace_ip() do with info
This was due to the `run_mix` script stripping all `*.so` files from the built `app.zip`. When I include the library, I'm getting ``` 20:52:44.691 [error] WX ERROR: Could not load...
Thanks, that does it! I guess it should be added to instructions somewhere. I can make a PR later, I'm now trying to get this to work. Btw is there...
I guess I need to rejoin Slack then. :) I have just gotten the app to run for the first time! This is glorious! Thanks so much.
Seems to me that the issue is that in https://github.com/phoenixframework/esbuild/blob/749fbe6c0d5ded2cfbaa6af65e71a6e2664cc85c/lib/esbuild.ex#L269-L279 only the host and port are picked up from the proxy env var. Userinfo is lost and not passed to...
Looking at [this answer on SO](https://stackoverflow.com/a/65631068) and its comments, it seems authentication credentials should be parsed from the URL and passed to `:httpc.request`, they sadly cannot be given to `:httpc.set_options/1`.
As a workaround, you can install the runonsave extension for VSCode and configure that to run `mix format`: https://elixirforum.com/t/heex-formatter-a-formatter-for-heex-templates/45649/18?u=nicd Sadly then "save without formatting" won't work. So it would be...
Checking with `watchexec`, the `ezstd_nif.so` seems to be very briefly created into `build/dev/erlang/ezstd/c_src/priv/ezstd_nif.so`, before all the build output is removed. So maybe it's looking for it in the wrong directory,...
Similar issue in another package: https://github.com/silviucpp/erlkaf/issues/42
The compiler (or rebar3?) also warns ``` ===> "/home/nicd/test/gleam_test/_build/dev/lib/gleam_json/ebin/gleam_json.app" is missing kernel from applications list ===> "/home/nicd/test/gleam_test/_build/dev/lib/gleam_json/ebin/gleam_json.app" is missing stdlib from applications list ``` and indeed `kernel` and `stdlib` are...