was wondering what is the significance of “@“ in the import.
For example: Import Container from “@core/material...”
Is it a pathing thing? Like ../ or ./?
was wondering what is the significance of “@“ in the import.
For example: Import Container from “@core/material...”
Is it a pathing thing? Like ../ or ./?
the @ will search through the node_modules
rather than having to do something like ../../../../core/material
so the @ points to the root of the project rather than the current directory.
This thread explains it further: What does the @ symbol do in javascript imports?