We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello daniel, and thanks for this project, i used the same skeleton for one of my project.
It seem there is a problem with preview 8, especially for reference static files (js/css) wich came with nuget package of blazor library.
How to reproduce :
<link href="_content/Blazor.ContextMenu/blazorContextMenu.min.css" rel="stylesheet" /> <script src="_content/Blazor.ContextMenu/blazorContextMenu.min.js"></script>
Maybe there is some adaptation to do with preview 8 ?
thanks for your help !
The text was updated successfully, but these errors were encountered:
I finally find what's happening,
i needed to add this line on the host configuration in the server project (program.cs) webBuilder.UseStaticWebAssets();
like this
public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseNLog(); webBuilder.UseStaticWebAssets(); webBuilder.UseStartup(); });
I keep this issue open because can be good to have this project working on the last preview
Sorry, something went wrong.
No branches or pull requests
Hello daniel, and thanks for this project, i used the same skeleton for one of my project.
It seem there is a problem with preview 8, especially for reference static files (js/css) wich came with nuget package of blazor library.
How to reproduce :
Maybe there is some adaptation to do with preview 8 ?
thanks for your help !
The text was updated successfully, but these errors were encountered: