public object Any(FallbackForClientRoutes request) { //Return default.cshtml for unmatched requests so routing is handled on the client return new HttpResult { View = "/default.cshtml" }; }
//Return index.html for unmatched requests so routing is handled on client public object Any(FallbackForClientRoutes request) => Request.GetPageResult("/");
public object Any(FallbackForClientRoutes request) { return defaultHtml ?? (defaultHtml = HostContext.ResolveVirtualFile("/default.html", Request).ReadAllText()); }