Skip to content

Instantly share code, notes, and snippets.

@seanrco
Created July 19, 2018 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seanrco/fe3e02bf12982047995a3af8e76277e7 to your computer and use it in GitHub Desktop.
Save seanrco/fe3e02bf12982047995a3af8e76277e7 to your computer and use it in GitHub Desktop.
ImageResizer Web.Config Entries
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="resizer" type="ImageResizer.ResizerSection" requirePermission="false" />
</configSections>
<resizer>
<plugins>
<add name="MvcRoutingShim" />
<add name="DiskCache" />
</plugins>
<sizelimits imageWidth="0" imageHeight="0" totalWidth="5000" totalHeight="10000" totalBehavior="throwexception" />
</resizer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment