Skip to content

Commit 0bcf3b7

Browse files
johnnywang1994haoqunjiang
authored andcommitted
docs: add sassOptions for sass-loader >= 8 (#1593) [ci skip]
* #65 - add sassOptions for docs fix docs with error: 'options has an unknown property 'indentedSyntax'.' which new sass-loader are writen in 'sassOptions'; This should also cause quick prototyping's sass setting, after executing '$vue serve' * #65 - sassOptions fix for sass-loader * #65 - fix sassOptions - lang:ru * add comment for sassOptions version * add comment for sassOptions * add comment for sassOptions * Update docs/guide/pre-processors.md Co-Authored-By: Haoqun Jiang <[email protected]> * Update pre-processors.md * Update pre-processors.md
1 parent d3fa467 commit 0bcf3b7

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

docs/guide/pre-processors.md

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ Note that `sass-loader` processes the non-indent-based `scss` syntax by default.
6363
loader: 'sass-loader',
6464
options: {
6565
indentedSyntax: true
66+
// sass-loader version >= 8
67+
sassOptions: {
68+
indentedSyntax: true
69+
}
6670
}
6771
}
6872
]

docs/ru/guide/pre-processors.md

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ module.exports = {
6363
loader: 'sass-loader',
6464
options: {
6565
indentedSyntax: true
66+
// sass-loader >= 8
67+
sassOptions: {
68+
indentedSyntax: true
69+
}
6670
}
6771
}
6872
]

docs/zh/guide/pre-processors.md

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ module.exports = {
6363
loader: 'sass-loader',
6464
options: {
6565
indentedSyntax: true
66+
// sass-loader version >= 8
67+
sassOptions: {
68+
indentedSyntax: true
69+
}
6670
}
6771
}
6872
]

0 commit comments

Comments
 (0)