You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@chrgei thank you for reporting this issue. The ResourceLevel.Site property is only applicable to script resources (this is because script resources require special handling in Blazor). You should either not specify the Level or set it to ResourceLevel.Module for stylesheets. The fix you suggested would solve the issue - however it should actually be implemented at a lower framework level so that stylesheet items are never added to the collection.
I have the following Code in a Module:
This definition results in the HTML file as:
I found the reason in the file Oqtane.Server\Pages_Host.cshtml.cs, Line 205:
should be changed to
The handling of CSS files seems to be completely missing.
The text was updated successfully, but these errors were encountered: