You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library does not seem to work in a Blazor WebApp project with static SSR rendering. The issue appears to be related to the initialization method:
protected override async Task OnAfterRenderAsync(bool firstRender)
This method is never called in a static SSR project, likely because Blazor static rendering does not invoke the standard component lifecycle methods in the same way as Server Mode or WebAssembly.
Is there an alternative approach or a workaround to initialize the library in a static SSR project? Any guidance would be greatly appreciated.
Thank you for your help!
The text was updated successfully, but these errors were encountered:
The library does not seem to work in a Blazor WebApp project with static SSR rendering. The issue appears to be related to the initialization method:
protected override async Task OnAfterRenderAsync(bool firstRender)
This method is never called in a static SSR project, likely because Blazor static rendering does not invoke the standard component lifecycle methods in the same way as Server Mode or WebAssembly.
Is there an alternative approach or a workaround to initialize the library in a static SSR project? Any guidance would be greatly appreciated.
Thank you for your help!
The text was updated successfully, but these errors were encountered: