I’m a bit behind on any potential progress here: Do I still need to include this in my netlify.toml
to include the latest Dart Sass version for my build? (With these versions current as of this writing)
[build]
publish = "public"
command = """\
curl -LJO https://github.com/sass/dart-sass/releases/download/1.77.8/dart-sass-1.77.8-linux-x64.tar.gz && \
tar -xf dart-sass-1.77.8-linux-x64.tar.gz && \
rm dart-sass-1.77.8-linux-x64.tar.gz && \
export PATH=/opt/build/repo/dart-sass:$PATH && \
hugo --gc --minify \
"""
[build.environment]
HUGO_VERSION = "0.131.0"
DART_SASS_VERSION = "1.77.8"