I tried to modify my “Counter.razor” code with a Console.WriteLine, but nothing is printed inside of the console, and the counter get the +1.
I have my @rendermode InteractiveWebAssembly
and can’t set it to @rendermode InteractiveServer
because I will need it for the future
private void IncrementCounter()
{
Console.WriteLine("ouiii");
counter++;
}