Does blazor webassembly not contain a "backend" server?
So I'm a complete beginner when it comes to C# and dotnet development. Whenever I learn a new framework I always make the same app - a simple chat app, as it both helps me understand how to interface with a database, with real-time communication (websockets) and with dynamic client-side rendering. However I started following a tutorial about using clientR and I soon realized that my blazor project doesn't have a server!? What type of project should I create to have both a classic backend and a frontend, in my understanding the blazor wasm template is similar to "vite" in the javascript world (frontend only) so I can't really host my websocket server. I'm also using VSCode instead of VS2022 which is not helping as I have to use the CLI to create the project and I don't know what command I should use for a full stack type of project.