我正试图让Polymer 0.9与Meteor合作,但流星正在吐痰:
While building the application:
bower_components/polymer/polymer-micro.html:9: bad formatting in HTML template
bower_components/polymer/polymer-mini.html:9: bad formatting in HTML template
bower_components/polymer/polymer.html:17: bad formatting in HTML template
=> Your application has errors. Waiting for file change.
有什么方法可以解决这个问题吗?
答案 0 :(得分:1)
您应该将组件放在公共/项目的根目录中。
答案 1 :(得分:1)
我遇到了同样的问题。我无法判断你是否正在使用硫化,但我是这么认为的。
是什么解决了我:
安装Bower:npm install -g bower
(bower.org)
在项目的根目录中创建一个名为.bowerrc
然后,您想告诉凉亭在哪里安装聚合物组件。 在.bowerrc中:
{
"directory": "public/bower_components"
}
现在,使用凉亭安装聚合物
bower install --save Polymer/polymer#^1.2.0
如果您正在使用纸张和铁等聚合物的其他部分,那么您也将重复这个凉亭安装步骤。
然后再次尝试启动流星。