So, i have several handlebars templates on a far far away folder. I have to import them using
import UserTemplate from '../../../../../../More/Stuff/Omg/Template.handlebar'
I'm thinkg if i could do something nicer, like a function to resolve this for me for instance
let UserTemplate = Templates.get('Template.handlebar');
Then this function would do all those crazy path stuff and import.
Would that be possible somehow ?