I\'m in the process refactoring an Angular application and as I\'m moving components around to new directory locations, I\'m finding that dealing @import paths
@import
If I've understood the question correctly then using @import 'src/app/...' works correctly.
@import 'src/app/...'
e.g.
@import 'src/mixins';
Note that there's no leading backslash on the path.
(this is tested on Angular 9)