Skip to content

Update documentation for sass indented syntax #2086

Open
@lorefnon

Description

@lorefnon

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions