我有一个自定义元素(my-element)和这个文件夹结构:
my-element
├── bower_components
│ ├── paper-menu
│ ├── paper-checkbox
├── my-element.html
我的元素使用上面两个纸质元素,但它通过规范路径导入它们:
<link rel="import" href="../paper-menu/paper-menu.html">
而不是
<link rel="import" href="bower_components/paper-menu/paper-menu.html">
这可以通过使用polyserve来实现,如Rob Dodson在Create reusable elements中所描述的那样,或者像我一样使用自定义gulp配置。
在这种情况下如何硫化my-element.html
?
Vulcanize显然无法检测到规范路径,所以我尝试了几件事,包括硫化选项和吞咽技巧(如gulp-replace管道),但还没有成功。谢谢!