From b97dc18ab0418c7cf01cfdf77e0367b4ec251fb4 Mon Sep 17 00:00:00 2001 From: Ivo Date: Tue, 23 Apr 2024 21:26:33 +0200 Subject: [PATCH] Fix issue where hugo fails with error: to no such template "_internal/google_analytics_async.html" --- layouts/_default/baseof.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index dbda687..e1ebf58 100755 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -37,7 +37,7 @@ {{- template "_internal/twitter_cards.html" . -}} {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }} - {{ template "_internal/google_analytics_async.html" . }} + {{ template "_internal/google_analytics.html" . }} {{ end }} {{ block "head" . }}{{ partial "head-additions.html" . }}{{ end }}