how can I compile SASS to CSS in Bracket IDE?

86 Views Asked by At

I have been working coding on bracket text editor for several days but I don't know how compile my SCSS codes to CSS!!

I have also installed bracket sass extension , have I installed right extension or not? if I have, so how does it work?

this is my extension manager:enter image description here

1

There are 1 best solutions below

2
Dinesh Garusinghage On

Try installing another extension. I had the same problem. I installed the live sass compiler extension. It worked for me.

Try installing the live sass compiler. After that, prepare the settings.json file below.

    "liveSassCompile.settings.formats": [
    {
        "format": "expanded",
        "extension": ".css",
        "savePath": "~",
    },
    {
        "format": "compressed",
        "extension": ".min.css",
        "savePath": "~",
    }
],