I know the'@'in the path. What does the'@ 'before import mean?

when I look at other code, I see this introduction statement:

    @import "src/assets/scss/index";
As we all know, the"@ "symbol in the path is used to abbreviate the path, so what is the function of the" @ "symbol in front of the import ?

Jul.16,2021

sass syntax

clipboard.png


this is the syntax of less reference style (sass is not very clear). By the way, you can use less in cli3 as follows:

// views/index.vue
@import '~@/styles/utils.less'

adding a tilde allows webpack to alias the normal resolution path

Menu