I am using blazor wasm, I want to create a custom routing that starts with the letter @ and ends with the User's username. I wrote the following code, but it seems that the routing cannot be set this way
the route I expect https://localhost:5000/@michel
@page "/@{Username}"
@code {
[Parameter]
public string Username { get; set; }
}