有没有办法将ember服务与environment.js中的ember构建区分开?

时间:2018-09-07 08:08:04

标签: ember.js ember-cli

我希望能够在ember构建中传递一个参数,以区别于ember serve(http://localhost:4200)。

当通过rootURL在本地运行时,以及当它是使用localhost:4200 https://www.example.com/app在dev服务器中构建的版本时,我尝试使用不同的ember build

否则是否可以将余烬服务的默认环境设置为“本地”而不是“开发”?

谢谢

1 个答案:

答案 0 :(得分:1)

经过大量研究,并且无法通过内置功能进行操作, 我决定使用ember-cli-dotenv

我在服务器中的开发/登台/生产环境中为本地添加了.env,并为IS_LOCAL = true添加了一个忽略git的IS_LOCAL = false文件。