I have a Blazor Hosted WebAssembly which means that I have three projects, the Client, the Server and the Shared. The inter-communication happens with web-apis.
On the Client, into index.html I have the following:
<base href="/app/" />On the Client, into Clientn.csproj I have the following:
<StaticWebAssetBasePath>app</StaticWebAssetBasePath>On the Server, into program.cs I have the following:
app.UseBlazorFrameworkFiles("/app");app.UseStaticFiles();app.UsePathBase("/app");app.MapFallbackToFile("/app" +"/" +"index.html");With those settings the application starts and loading but it fails to load two packages:
Blazored.ModalBlazored.TextEditorThese two packages are trying to find resources into /app/_content but the resources are not there.
When the application is running without a subpath it works normally
Any ideas?
