我正在尝试使用meteor-client-bundler打包现有的meteor应用程序,以便在新的React Native项目中使用。 RN项目位于与流星应用程序相同级别的目录中。当我尝试运行meteor-client bundle --source = .. / myMeteorApp时,我收到以下错误:
使用static-html处理文件时(对于目标web.browser): client / main.html:12:预期或标记
我的客户端html文件非常标准,可以正确编译流星。我怀疑与包装有冲突,但我不确定。这是我的main.html文件供参考:
<head>
<meta charset="utf-8">
<title>My App</title>
<meta name="description" content="My app">
<meta name="viewport" content="user-scalable=no, initial-scale=1, minimal-ui, maximum-scale=1, minimum-scale=1" />
<!-- <link rel="shortcut icon" type="image/png" href="favicon.png?v1" sizes="16x16 32x32 64x64">
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-precomposed.png">
-->
</head>
我的meteor应用程序正在使用react,但我认为这不会影响meteor客户端捆绑程序的执行能力。任何有关这方面的帮助将不胜感激!