I’m trying to copy the jsserve-wglmakie example. I cloned JSServe.jl, installed WGLMakie and ran
JSServe.browser_display()
app = App() do
return scatter(1:5,1:5)
end
display(app)
but the page in the browser just says “nothing to see”.
I’m not sure what is wrong. What should be the smallest code I can run to produce a WGLMakie plot with a julia server?