Maxime Mangel
Maxime Mangel
`hot: true` tell webpack-dev-server to serve file via HMR. And the HMR plugin, tell webpack to add the plugin in the client so he know how to handle it. But...
@piaste Can you please check that having `hot = true` without the global webpack work for you ? I would prefer, keep `hot = true` instead of using the `--hot`...
@kerams are you sure that you got HMR and live reload? Can you please copy paste your browser console after doing an HMR update ?
@kerams Can you please tell me if you get HMR working with [this version](https://github.com/MangelMaxime/fable-suave-scaffold/tree/hot_via_cli) (take the hot_via_cli branch) ?
If you remove this lines what's the result ? ```fs |> Program.withConsoleTrace |> Program.withDebugger ```
@purkhusid HMR behind `lazyView`, `lazyView2`, `lazyView3` works too but because they are lazy their will not re-render directly. They are lazy so they only re-render if your model changed, trigger...
@dgroh Are you using any of `lazyView`, `lazyView2`, `lazyView3` in your application ? Do you have a global version of webpack isntalled ? If you use [this project](https://github.com/MangelMaxime/Fulma-demo) do you...
It's because of `Fable.React` is one of the older libraries and at the time, we wanted to have a thin layer on top of React. So using `obj` make it...
The idea behind this choice, is people will only need to implement the renderer API contracts. Which will describe how to render an input, a field, a control, errors, etc.
I made some experimentation: https://goo.gl/x9XmVQ From user point of view here is how to hook a form in his application: ```fs type Model = { FormState : Form.Builder } and...