Skip to content

Instantly share code, notes, and snippets.

@growdigital
Created February 8, 2025 18:20
Show Gist options
  • Save growdigital/46720f37369fb3c8c70c0e8b3336f346 to your computer and use it in GitHub Desktop.
Save growdigital/46720f37369fb3c8c70c0e8b3336f346 to your computer and use it in GitHub Desktop.
<!-- Purge CSS in Production -->
{{ if hugo.IsProduction }}
{{ if site.Params.purge_css }}
{{ $styles = $styles | resources.PostCSS | minify | fingerprint "sha512" }}
{{ else }}
{{ $styles = $styles | resources.Minify | fingerprint "sha512" }}
{{ end }}
{{ else }}
{{ $styles = $styles | resources.Minify }}
{{ end }}
<!-- <link rel="stylesheet" href="{{ $styles.RelPermalink }}" /> -->
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Integrity }}" crossorigin="anonymous" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment