使用ember.js和corber.io构建了一个iOS应用程序,它只是用于ember的Cordova,在实时重装开发服务器下运行时一切运行良好。
现在已准备好开始测试,但构建无法运行。应用程序使用的API服务器URL不正确,也不是内部资源,如image和css文件。
以下内容已在environment.js
文件中设置
if (environment === 'production') {
ENV.APP.API_HOST = 'http://xxxx.com';
}
if (environment === 'development') {
ENV.APP.API_HOST = 'http://xxxx.com';
}
正如文档所示运行corber build --platform=ios --environment=production
并且没有构建错误。
我在这里缺少一些简单的东西。 使应用程序为生产构建做好准备的步骤是什么?