Hi,
we purchased Good – Bootstrap 5 HTML Admin Dashboard Template and follow the same instruction to implement it with Blazor. but getting issue.
Please resolved as soon as possible.
Hi again,
If you somehow get a chance to rate Good Admin on Getbootstrap Market, it would help us a lot.
Best Regards,
Lauris
What do you mean by you will fix in next release . So currently, what you should I do.
either you have to return money or we have to hold our project till your next release . What you think ?
Hi,
We will release the fix for this issue in the next update as soon as possible. In the meantime you can follow the below instructions to fix it in your end.
The easiest way to get started with Good + Blazor is to reuse webpack.config.js from the /theme/tools folder.
You can copy the/theme folder and place it into a root directory of your Blazor project.
By default, all bundled assets will be placed inside a /dist folder, but in the Blazor app we need to place them in the /wwwroot directory, to achieve this you can update the distPath variable in /theme/tools/webpack.config.js.
…
const distPath = demoPath + "../../wwwroot";
…
npm install
npm run build
@inject IJSRuntime JS
@inject NavigationManager MyNavigationManager
@code {
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
await JS.InvokeAsync<IJSObjectReference>("import", MyNavigationManager.ToAbsoluteUri("assets/plugins/global/plugins.bundle.js"));
await JS.InvokeAsync<IJSObjectReference>("import", MyNavigationManager.ToAbsoluteUri("assets/js/scripts.bundle.js"));
}
}
}
Hi,
Thank you for your feedback.
We are already working on the fix, fix will be available in the next Good theme releases.