Skip to content

Instantly share code, notes, and snippets.

@benjanderson
benjanderson / ChangeBaseHrefMiddleware.cs
Created February 2, 2018 21:27
Asp.net core 2.1 middleware that changes base href to support IIS virtual directory for SPA applications. Handy for Angular, React, Vue...
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Configuration;
using System.IO;
using System.Text;
using System.Threading.Tasks;
public class ChangeBaseHrefMiddleware
{
RequestDelegate next;
private readonly IConfiguration configuration;