Also just out of curiosity I recreated scene with your original code (it was weird to me that you had to load model first and then to create shadowGenerator because it should work even if you create it before).
What I discovered is this
https://playground.babylonjs.com/#0UMW22#6
It works, but if you uncomment line 44 where is refreshRate setting (which is existing in your original code), then it doesn’t work.
So without that you can use your old code and everything is okay.
EDIT:
Okay you can also use that line but like this.
shadowGenerator.getShadowMap().refreshRate = BABYLON.RenderTargetTexture.REFRESHRATE_RENDER_ONEVERYFRAME
Or REFRESHRATE_RENDER_ONEVERYTWOFRAMES which is probably more performance acceptable
Instead of REFRESHRATE_RENDER_ONCE like you had in your original code.