Hi there,
I can import my custom resolver located in my addon by importing it in myproject/app/app.js and replace the Resolver here:
import CustomResolver from 'my-addon/resolver';
...
var App = Ember.Application.extend({
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix,
Resolver: CustomResolver
});
But it needs to be done by hand after installing the addon.
Is it a possible way to update the resolver with an addon without touching the app/app.js file ? I’d like to overload the default resolver via initialize or anything that can be implemented in an addon.
Any idea ?
Thanks !