I have a mixin app/mixins/ui-listener.js
which I\'m struggling to use with Ember-CLI. I\'m trying to use the mixin with the following syntax:
import
Instead of adding ../
(or even worse ../../../
) into your imports, you can go to your config/environment.js
and check for the property modulePrefix
. Let's say the prefix is app-client
.
Then, you can import by using import UIListen from 'app-client/mixins/ui-listener';
instead. Absolute works best if you are in a "deep" subroute, etc.