diff --git a/README.md b/README.md index 8ce9bfb..2610ac4 100644 --- a/README.md +++ b/README.md @@ -78,8 +78,9 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) { //... // services.AddSingleton(_ => new PhysicalFileProvider(_env.WebRootPath ?? _env.ContentRootPath)); - app.UseStaticFiles(); - app.UseImageResizer(); + app.UseImageResizer(); + app.UseStaticFiles(); + //... } ```