Greetings,
i have just upgraded my few Blazor WASM (client side, NOT server side) to the latest version of SyncFusion (18.3.0.42) and i found out that now it is mandatory to specify the
<base rel='nofollow' href="/">
in the loading page. If not included, there will be a problem when syncfusion try to download the .js scripts in "internal" pages like in the following example:
syncfusion-blazor.min.js:1 GET https://localhost:44399/chatstack_content/Syncfusion.Blazor/scripts/listsbase-57fa2c.min.js net::ERR_ABORTED 404
As you can see, the browser reported the attempt to download the script "chatstack_content/Syncfusion.Blazor/scripts/listsbase-57fa2c.min.js", which does not exists (because the correct one is "_content/Syncfusion.Blazor/scripts/listsbase-57fa2c.min.js", without the starting chatstack).
Adding "<base rel='nofollow' href="/">" solve the problem, but this is a change from 18.2 (which didn't required the "base" tag) and also can limit the use of blazor in some situations.
Was this change done on purpose?
P.S.: to clarify things, "chatstack" is a name of one of the pages of my blazor application.