Jordan Marr

Results 192 comments of Jordan Marr

Grapnel router doesn't appear to support sub routes. Assuming you have a page with tabs: I would probably just pass the tab name to the page. You can create a...

@leolorenzoluis, new stuff has been added: https://twitter.com/jordan_n_marr/status/1553107245868748804

Were you able to get it working? I guess it just depends on which library you are using. The ideal graph library would be a Web Component which would allow...

You can adjust it here: https://github.com/JordanMarr/fable-lit-fullstack-template/blob/890dcc0a305f41106c68bfc9a7e3bf387340232d/Template/WebLit/src/Server.fs#L21

I have used environment variables before, but that was using webpack. I’m not sure about how to set it up with vite. Not sure about the SEO optimization either. Let...

Yes, I have an app deployed that runs in an Azure app service.

I just bundled the front end and deployed it as part of the WebApi. It's easier that way since you don't need to do any extra configuration. The FAKE build...

I did leave some commented-out Giraffe authentication code as an example. I didn't fully integrate anything because I didn't want to make assumptions about which provider someone would use. But...

My app is very small, and so I have no need to do that. If you need to scale out, then you should continue down the path of deploying the...

If you want a super easy way to do it, you could just change it based on your Debug/Release mode, so it will happen automatically when you build: ```F# module...