Refused to apply style from 'http://localhost:4200/node_modules/@fortawesome/fontawesome-pro/css/all.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
...message is displayed in Chrome Version 71.0.3578.98 browser debug console, and icons are not visible for AspNetZereo release 6.4.0. AspNetZero release 6.2.0 does not display this message and all icons are visible.
I read the other 3 issues related to this, and was unable to apply any of those solutions to solving my issue. Starting with a clean database does not solve the issue either. I've also attempted other solutions found in places like github and stackoverflow - without success. The issue is related to "pro" icons only. Non-pro icons display normally.
What is required to fix this issue?
Thank you for the clarification.
The answer seems to be that the all selections in the User Interface group are unselected.
I'm trying to identify a path for implementation. Could you please answer my questions? Thank you.
You say "However, this is based on the Abp vNEXT framework." What's the catch? I do understand the vNext isn't yet officially released, but that's not a sufficient barrier for creating documentation pages. Unless it really isn't production ready.
Can I use the npm package in the current release of AspNetZero? Is it recommended I use the npm package as a separate solution, independent of my AspNetZero solution? Should I wait until AspNetZero integrates Abp vNEXT framework? And if so, what is the planned release date? It would be helpful if you could identify some possible paths for implementation. Thank you.
I like the layout and operation of ASP.NET Zero and ASP.NET Boilerplate documentation pages, with page selection column on the left, and section within the page selection column on the right. I'd like to use the same layout for documenting my app. Is this based on a package I can obtain from a vendor or community? Better still, can you incorportate a few sample web pages into the ASP.NET Zero app in a future release?
I used the Power Tool to create an entity. I am able to add a record in my table using the GUI generated when I am logged in.
I have a new registration form, and I want to add a record in my table at registration time - before the user has logged in. In method 'public async Task<RegisterTenantOutput> RegisterTenant(RegisterTenantInput input)' I call the 'CreateOrEdit' method of 'IInstitutionsAppService', as follows:
await _institutionsAppService.CreateOrEdit(
new TtmDataModel.Dtos.CreateOrEditInstitutionDto()
{
DomainName = emailDomain,
InstitutionName = institutionName,
TenantId = tenant.Id,
IsSet_ = 0,
Id = null,
});
Invoking the method results in an Exception being thrown. Exception.message: "Current user did not login to the application!"
Can you direct me to the documentation that will explain how to create and edit my custom table records without the user being logged in? Or if there is no documentation, please explain how to accomplish this objective. Thank you.