I need to embed an ember application made with ember-cli in an existing website.
Without ember-cli, I would do this:
App = Ember.Application.create({
rootElement: '
});
Basically, I want to include the generated assets in my page and not use the index.html file at all .. (The application should be attached to the div element, and not to the body element.)
source
share