Fixing Blazor WASM Deep Linking on Azure Static Web Apps

When you deploy a Blazor WebAssembly application to Azure Static Web Apps, everything works perfectly when you navigate from the root URL. But the moment a user bookmarks a deep link, shares a URL, or refreshes the page on any route other than /, they're greeted with a cold 404 Not Found error. This post … Continue reading Fixing Blazor WASM Deep Linking on Azure Static Web Apps

Lesson 6.2: Create Blob Storage Container

Azure Blob Storage is an option for saving raw files in containers that can be retrieved and read in our services. We can use a storage account and container to hold our data files. They can be updated by tools, uploaded by the operations team, or edited in Azure directly. Then, the data becomes available … Continue reading Lesson 6.2: Create Blob Storage Container

Lesson 6.1: Introduction to Azure Storage Options

In this chapter, we will investigate various Azure Storage options for our game services. In the previous chapter, our service just read data from resource files. That isn't very useful for most services, but it allowed us to focus on understanding Azure Functions without getting into storage complexities. However, Azure provides many storage capabilities. All … Continue reading Lesson 6.1: Introduction to Azure Storage Options

Azure Static Web Apps with Blazor WebAssembly

Azure has Static Web Apps functionality integrated with Blazor now, but only works with GitHub as the source repository for the preview version. This article has a great description of how to get it working. It appears that the Azure Static Web Apps functionality really streamlines the process for building CI/CD for these types of … Continue reading Azure Static Web Apps with Blazor WebAssembly

Lesson 5.2: Setting up Azure Storage Account for Static Website

Since our game is already a Blazor WebAssembly, we will easily be able to deploy it to multiple cloud hosting platforms. Any service that provides for a static website will also be able to host our game. In this series, we're going to be working with Azure for our web service development, so it makes … Continue reading Lesson 5.2: Setting up Azure Storage Account for Static Website