Simple auth addon seems to not be reading env config

。_饼干妹妹 提交于 2019-12-02 01:33:47

Ember Simple Auth actually still relies on the window.ENV configuration variable, so you'll need to add it to your configuration. Do it like this:

  window.MyAppENV = {{ENV}};
+ window.ENV = window.MyAppENV;
  window.EmberENV = window.MyAppENV.EmberENV;

When used with the Ember CLI Simple Auth addon, Ember Simple Auth uses the ENV['simple-auth'] configuration set in config/environment.js like below:

...

  var ENV = {
    ...
  };

  ENV['simple-auth'] = {
    routeAfterAuthentication: 'some.route.name.you.choose'
  };

  ...
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!