Yes it is possible. What you put in your addon application directory will be combined with the application directory for applications for applications. ( Resource ) Put your routes in the correct directories.
On the other hand, you need to add your routes to the router mapping. You can use instance initializers for this purpose. Also remember to put your instance initializers in the application directory. All you need to do in your initialization function is calling Router.map(...) . The code would be something like this:
import Router from '../router'; function initialize(){ Router.map(function() { this.route('yourroute'); }); }
ps: updated code
source share