Hello,
In v11, we had a custom route for our assets in our Global.asax. We are trying to find an equivalence in v12.
This was our original code:
routes.MapAssetRoutes(
name: "PublishingImages",
url: "/{node}/{partial}/{action}",
defaults: new { action = "index" },
staticSegmentPlaceHolder: EPiServer.Web.Routing.RouteCollectionExtensions.MediaStaticSegmentPlaceHolder,
globalReplacement: "publishingimages",
siteReplacement: EPiServer.Web.Routing.RouteCollectionExtensions.SiteAssetStaticSegment);
Any suggestions?