I would like to use this module in combination with FluentUI Blazor on .NET 8. Unfortunately I cannot get the editor working. Others have had similar issues in the past which I was able to reproduce in .NET Core 3.1, but these fixes don't work for .NET 8.
I would like to use this module in combination with FluentUI Blazor on .NET 8. Unfortunately I cannot get the editor working. Others have had similar issues in the past which I was able to reproduce in .NET Core 3.1, but these fixes don't work for .NET 8.
Has anyone an idea what I am missing here?
App.razor <!DOCTYPE html>
```@page "/" @using BlazorMonaco.Editor
<StandaloneCodeEditor Id="editor" @ref="_editor" ConstructionOptions="EditorConstructionOptions" CssClass="editor-class" />
@code { private StandaloneCodeEditor _editor = null!;
}