So, I was trying to setup Syncfusion for Blazor based on information on the getting started page. I'm on VS22, .net6, Syncfusion for Blazor version 20 something.
In part Add Style Sheet - there is
<linkrel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap5.css"rel="stylesheet"/>
And it doesn't work for me as I'm getting "Failed to load resource: the server responded with a status of 404 () syncfusionblazor.js" in browser.
Searching for answers I got this on your pages and it worked for me.
So instead of the line above I had to write this:
<link rel='nofollow' href="_content/Syncfusion.Blazor/styles/bootstrap5.css" rel="stylesheet" />
So with this change everything works on .net6 and latest blazor package. Pls fix it in the docs or in nuget package.
Many thanks