hugo-theme-stack/layouts/partials/footer/components/script.html
2022-01-13 11:02:51 +08:00

8 lines
425 B
HTML

{{- partial "helper/external" (dict "Context" . "Namespace" "Vibrant") -}}
{{- $opts := dict "minify" hugo.IsProduction -}}
{{- $script := resources.Get "ts/main.ts" | js.Build $opts -}}
{{- $customScript := resources.Get "ts/custom.ts" | js.Build $opts -}}
<script type="text/javascript" src="{{ $script.RelPermalink }}" defer></script>
<script type="text/javascript" src="{{ $customScript.RelPermalink }}" defer></script>