Nv7
Nv7
You are supposed to run the dev server with vgrun
Is Server-side rendering possible now?
To use server-side rendering, we need 0_components_vgen.go, so should we un-gitignore that now?
But how do we import 0_components_vgen.go? It's package main, so you can't import it
But then how do we compile a non-main package to WASM?
So if i make the package main, I can just use `go build` to compile it to WASM, however I can't import it from my Backend and generate static files....
So do I keep a copy of the code, one as a non-main package for the server, and one as a main package for the WASM?
Ohhh ok, thanks! How did I not realize this!
I’ve been using Bootstrap with vugu which has allowed me to implement tons of components without much effort - since bootstrap requires basically no JS you can use nearly all...
When I try to use the `fetch` I get a go deadlock error, how can you properly wait for a `fetch` call without using callbacks? The Go standard library `net/http`...