Skip to content
Snippets Groups Projects
csp.html 417 B
Newer Older
Arnaud Levy's avatar
Arnaud Levy committed
{{ if not site.Params.search.active }}
  {{- with site.Data.website.external_domains -}}
  <meta http-equiv="Content-Security-Policy"
        content="default-src 'self' 
          {{ delimit . " " }}
          {{ if not hugo.IsProduction }}
            'unsafe-inline'
          {{ end }}
          {{ if site.Params.search.active }}
            'wasm-unsafe-eval'
          {{ end }};" />
  {{- end -}}
alexisben's avatar
alexisben committed
{{- end -}}