Hi everyone,
I'm new to Blazor and trying to get my first project set up. I've followed the official documentation to create a new Blazor Server app using the .NET CLI:
dotnet new blazorserver -o MyBlazorApp
When I try to run it with dotnet run, it builds successfully, but I'm seeing some odd behavior in the browser. The counter component increments multiple times when I click it, and the fetch data page doesn't seem to load correctly. Has anyone else encountered this with initial setups?
Are there any common pitfalls or prerequisites I might have missed?