2022-10-29 11:14:19 -04:00
|
|
|
{{- partial "helper/external" (dict "Context" . "Namespace" "Vibrant") -}}
|
|
|
|
|
2020-09-17 13:47:03 -04:00
|
|
|
{{- $opts := dict "minify" hugo.IsProduction -}}
|
|
|
|
{{- $script := resources.Get "ts/main.ts" | js.Build $opts -}}
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2022-01-19 10:35:15 -05:00
|
|
|
<script type="text/javascript" src="{{ $script.RelPermalink }}" defer></script>
|
|
|
|
|
|
|
|
{{- with resources.Get "ts/custom.ts" -}}
|
|
|
|
{{/* Place your custom script in HUGO_SITE_FOLDER/assets/ts/custom.ts */}}
|
|
|
|
{{- $customScript := . | js.Build $opts -}}
|
|
|
|
<script type="text/javascript" src="{{ $customScript.RelPermalink }}" defer></script>
|
|
|
|
{{- end -}}
|