Gregory Ledray
Gregory Ledray
I want to contribute to resolve this issue in a limited way, but I'm not sure about the scope. So far I've written a draft of recursive merge over on...
> Merging would be hugely useful - even if it's limited. I'm sure there are others that would like this feature besides myself. > @Gregory-Ledray please consider putting in a...
It's not necessary to use encoding/json to parse and encode JSON in Go. This library compiles on tinygo with -target wasm: https://github.com/buger/jsonparser This is possible because it import graph is...
Maybe I'm not understanding something simple, but adding a tag with a body does not work: ``` export default component$(() => { /** * The root of a QwikCity site...
I googled for how to deal with this in React without using index.html and found: https://vancelucas.com/blog/using-google-analytics-with-react/ But that uses dangerouslySetHTML, which I believe is not available in Qwik: https://github.com/BuilderIO/qwik/issues/1033
I can see the scripts now, thanks @wtho - I'll do some testing to make sure the analytics scripts are working properly with Qwik, and if they seem to be...
@alxndr I'm following the steps from: https://qwik.builder.io/qwikcity/static-site-generation/static-site-config/ Which are very similar to your steps. First-time-setup: `npm qwik add` In the build pipeline: ``` npm run build.client npm run build.static npm...
For now I'm using a [CloudFront function](https://aws.amazon.com/blogs/aws/introducing-cloudfront-functions-run-your-code-at-the-edge-with-low-latency-at-any-scale/), but I've only done the simplest of testing to check if this works. ``` function handler(event) { // NOTE: This example function is...
I ran into this while trying to fix the Git Diff problem, which was after a few other problems I had with Gitlab CI / CD pipelines. I wrote some...
> Currently unsuccessful, but this is the start template I currently got, hope this could help some of you and can even help me debug it and make it work....