标签: ember.js ember-cli
在我的开发设置中,我使用本地网络资源。所以我必须根据我的网络(家庭/工作)调整一些环境网址:
ENV.APP.image_path = home ? 'http://home.server' : "http://work.server";
是否可以在window.location中使用config/environment.js自动更改此网址?
window.location
config/environment.js