William Overton
William Overton
Any workarounds for this?
I am getting this error in AWS lambda node16.x ``` Error: Query engine library for current platform "rhel-openssl-1.0.x" could not be found. You incorrectly pinned it to rhel-openssl-1.0.x ```
I've just ran into this issue after following these docs: https://bytecodealliance.github.io/lucet/Compiling-on-Linux.html They seem to state that llvm and clang will be installed for you but I had to install them...
If you guys need a workaround, you can add `?reload=true` to your entrypoint in you webpack config: ``` entry: ["webpack-hot-middleware/client?reload=true", "./src/index.tsx"], ``` You also need to change `ignoreUnaccepted` to `false`...
In addition the Alpha 3 variant GBR is also not supported.
I also ran into this after upgrading to sveltekit 2. Followed @arggh 's workaround.
Is this project abandoned? There seems to be no chance of an npm release anytime soon?
Same issue with Google
@hugotox did you manage to get around this?
Hi @barrucadu, Did you edit the code of the starter kit in any way? I tried the steps you mentioned and was unable to reproduce. If you did not edit...