I'm actually trying to use Angular 2 with angular cli and I'm having a problem with polymer paper elements components.
Actually, I link this inside of my <head>
tag:
<link rel="import" href="../bower_components/paper-header-panel/paper-header-panel.html"/>
But the component doesn't load when I try this:
<paper-header-panel class="blue">
<div class="paper-header">standard</div>
<div class="content"></div>
</paper-header-panel>
Now, it seems that I can't find the package, the browser tries to request :
http://127.0.0.1:4200/bower_components/paper-header-panel/paper-header-panel.html
But nothing is found.
How can I make it work?