Skip to content
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

Update documentation for sass indented syntax #2086

Open
lorefnon opened this issue Oct 20, 2024 · 0 comments
Open

Update documentation for sass indented syntax #2086

lorefnon opened this issue Oct 20, 2024 · 0 comments

Comments

@lorefnon
Copy link

Current docs recommend use of following config to enable sass indented syntax:

                    {
                        loader: "sass-loader",
                        options: {
                            sassOptions: {
                                indentedSyntax: true
                            }
                        }
                    },

It looks like after a breaking change in sass-loader, we must use this option now:

                    {
                        loader: "sass-loader",
                        options: {
                            sassOptions: {
                                syntax: "indented"
                            }
                        }
                    },

Once we have a confirmation from sass-loader devs (webpack-contrib/sass-loader#1240) that this undocumented change was intentional, we can update the docs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant