forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gatsby-plugin-sass): add missing options (gatsbyjs#27786)
* fix(gatsby-plugin-sass): add missing options `cssLoaderOptions` is not defined in the schema, so it will return an error when passing in these options. See readme: ``` If you need to override the default options passed into css-loader: Note: Gatsby is using css-loader@1.0.1. plugins: [ { resolve: `gatsby-plugin-sass`, options: { cssLoaderOptions: { camelCase: false, }, }, }, ] ``` * Fix linting * test(gatsby-plugin-sass): add testing for css loader option Co-authored-by: Max Stoiber <contact@mxstbr.com>
- Loading branch information
1 parent
6615dbb
commit 7c86973
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters