Skip to content

docs: add sassOptions for sass-loader >= 8 (#1593) [ci skip] #1593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 22, 2019
4 changes: 4 additions & 0 deletions docs/guide/pre-processors.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ Note that `sass-loader` processes the non-indent-based `scss` syntax by default.
loader: 'sass-loader',
options: {
indentedSyntax: true
// sass-loader version >= 8
sassOptions: {
indentedSyntax: true
}
}
}
]
Expand Down
4 changes: 4 additions & 0 deletions docs/ru/guide/pre-processors.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ module.exports = {
loader: 'sass-loader',
options: {
indentedSyntax: true
// sass-loader >= 8
sassOptions: {
indentedSyntax: true
}
}
}
]
Expand Down
4 changes: 4 additions & 0 deletions docs/zh/guide/pre-processors.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ module.exports = {
loader: 'sass-loader',
options: {
indentedSyntax: true
// sass-loader version >= 8
sassOptions: {
indentedSyntax: true
}
}
}
]
Expand Down