I'm trying to compile a Sass file
The root file looks like this
@use '_colortheme'
@use '_config'
@use '_datepicker'
@use '_main'
In partial _main
I'm trying to use variables from _colortheme
and _config
but get the error for all the variables
Compilation Error
Error: Undefined variable.
I'm new to Sass, have tried @use
and @forward
in partials, but didn't work.
What are the possible reasons for this?