[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # Hosting Blazor on Vercel 188 views · 1 like · 3 posts Jesperson (@jesperson) · 2024-07-15 I am trying to run my Blazor (dotnet 8.0) on Vercel and the deployment is working correctly but I get this: https://vercel.com/docs/errors/NOT_FOUND error when I try to visit my deployment. There are no errors during the deployment and I see no other errors. I hope I'm not forgetting anything. Amy Egan (@amyegan) · 2024-07-15 · ♥ 1 Hey @jesperson! Is it a Blazor Server or a Blazor WebAssembly project? I've been able to deploy an example Blazor WASM project with [Vercel CLI](https://vercel.com/docs/cli) and a few changes from the default project config. You can see it at [blazor-wasm-five.vercel.app](https://blazor-wasm-five.vercel.app/) There isn't a C# runtime for Serverless Functions at the moment so I couldn't get a server project running. But it would be possible to add if someone has the time to develop it as a [community runtime](https://vercel.com/docs/functions/runtimes#community-runtimes). Jesperson (@jesperson) · 2024-07-16 I'm trying to deploy a Blazor Server project. I might have to look into making it a Blazor WASM project then I guess.