summaryrefslogtreecommitdiffstats
path: root/docs/content/en/hugo-pipes/scss-sass.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/hugo-pipes/scss-sass.md')
-rwxr-xr-xdocs/content/en/hugo-pipes/scss-sass.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/hugo-pipes/scss-sass.md b/docs/content/en/hugo-pipes/scss-sass.md
index 12cebc014..c4a0a5520 100755
--- a/docs/content/en/hugo-pipes/scss-sass.md
+++ b/docs/content/en/hugo-pipes/scss-sass.md
@@ -45,7 +45,7 @@ includePaths [string slice]
: Additional SCSS/SASS include paths. Paths must be relative to the project directory.
```go-html-template
-{{ $options := (dict "targetPath" "style.css" "outputStyle" "compressed" "enableSourceMap" true "includePaths" (slice "node_modules/myscss")) }}
+{{ $options := (dict "targetPath" "style.css" "outputStyle" "compressed" "enableSourceMap" (not hugo.IsProduction) "includePaths" (slice "node_modules/myscss")) }}
{{ $style := resources.Get "sass/main.scss" | resources.ToCSS $options }}
```