PythonNewbie
PythonNewbie

Reputation: 828

LESS file wasn't found. Tried -

My filesystem tree looks like this:

C:.
└───static
    ├───custom_stuff
    │       presets.css
    │       presets.less
    │
    └───index
            index.less

So, why index.less can't find presets.less, and throws me an error:

'/static/custom_stuff/presets.less' wasn't found. Tried - /static/custom_stuff/presets.less

I'm using VS Code and this extension to compile LESS to CSS

Upvotes: 0

Views: 1206

Answers (1)

Vitaly K
Vitaly K

Reputation: 66

Your path will be ../custom_stuff/presets.less

Upvotes: 2

Related Questions