@et1975 With this version of Elmish.HMR the user code looks exactly the same as before but Elmish.HMR.Program.toNavigable is actually replacing Elmish.Browser.Program.toNavigable when in DEBUG mode.
As long as the user include open Elmish.HMR after open Elmish.Browser.Navigation we will shadow Program.toNavigable call.
Related to https://github.com/elmish/browser/issues/14 Based on https://github.com/elmish/browser/pull/15
@et1975 With this version of
Elmish.HMR
the user code looks exactly the same as before butElmish.HMR.Program.toNavigable
is actually replacingElmish.Browser.Program.toNavigable
when inDEBUG
mode.As long as the user include
open Elmish.HMR
afteropen Elmish.Browser.Navigation
we will shadowProgram.toNavigable
call.