1

我正在尝试将启动画面添加到我的流星应用程序中。添加后在mobile-config.js文件中

App.launchScreens({
    //iOS
    'iphone_2x': '/images/splash/splash-375x667@2x.png'    
});

当我运行时meteor run ios-device,它显示以下错误:

在移动平台上运行时出错:ENOENT, stat '/images/splash/splash-375x667@2x.png'

4

1 回答 1

0

您的文件路径可能不应该以斜杠开头。对于位于的初始图像yourApp/images/splash/splash-375x667@2x.png

App.launchScreens({
    //iOS
    'iphone_2x': 'images/splash/splash-375x667@2x.png'    
});

请参阅MDG 的 github 中官方 localmarket 示例的配置以供参考。

于 2015-07-15T13:13:29.023 回答