In my assets folder, I have a global.less file where I have defined various site-wide variables.
Currently, in order to use these variables in other less files, I have to add this line at the beginning of each file:
@import 'global';
While this method works perfectly fine, it results in a duplicate copy of global being loaded into every less file. I am exploring if there is a more efficient way to import it only once in the project, allowing other less files to access it as needed.