I have a Blazor Server application that creates column charts using Syncfusion. The app works fine if link to Syncfusion-Blazor.min.js using CDN:
<script src=https://cdn.syncfusion.com/blazor/22.1.38/syncfusion-blazor.min.js type="text/javascript"></script>
However, the bar charts do not render if I use static web assets:
<script src="_content.Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
I have installed the Syncfusion.Blazor.Themes, .Charts and .Core NuGet packages, and I have included app.UseStaticFiles() in Program.cs.
Am I missing something regarding static web assets?