noveria.org/layouts/partials/libsass.html
2023-12-20 14:10:40 +01:00

9 lines
No EOL
391 B
HTML

{{ $opts := (dict "transpiler" "libsass" "outputStyle" "compressed" "includePaths" (slice "node_modules")) }}
{{ if eq hugo.Environment "development" }}
{{ $opts = (dict "transpiler" "libsass" "enableSourceMap" true "includePaths" (slice "node_modules")) }}
{{ end }}
{{ $css := resources.Get . }}
{{ $css := $css | toCSS $opts }}
<link rel="stylesheet" href="{{ $css.RelPermalink }}">