如何全局使用scss文件?

我已经在论坛上阅读了一些主题,但是老实说,我没有发现关于我的问题的任何具体信息。

I have several .scss files in my /assets/scss folder.

And these files are of different types, for example: placeholders and mixins.

Currently I give @import on these specific files, on the specific components which will use these files.

And this is getting a little weird, because I'm giving @import on several component .scss.

Is there any way I can use these without having to give @import on each .scss?

enter image description here

我的项目当前所在的示例:

@import '../../../assets/scss/mixins/breakpoints';

aside {
    @include breakpoint-desktop {
        width: 400px;
    }
}