I\'m trying to configure the adapter in my Ember CLI app to use a different host based on the environment. In dev, I want it to be the default current host (letting me customize
This seems to work
// adapters/application.js import DS from "ember-data"; export default DS.ActiveModelAdapter.extend({ host: window.MyAppENV.host });
though I'm not sure if it's the best method.