Skip to content

Instantly share code, notes, and snippets.

@TimGeyssens
Created August 13, 2020 09:09
Show Gist options
  • Save TimGeyssens/135a58cbe313f57aa6ddf6957294dfd5 to your computer and use it in GitHub Desktop.
Save TimGeyssens/135a58cbe313f57aa6ddf6957294dfd5 to your computer and use it in GitHub Desktop.
using Umbraco.Core;
namespace MyUmbracoWebsite
{
public class Startup : ApplicationEventHandler
{
protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
StaticFileHasher.HashFiles(umbracoApplication.Server.MapPath("~/css"), umbracoApplication.Server.MapPath("~/js"));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment