I found a good JS component that was installed with Bower.
I would like to know how I can import my component, and let it be served by Pub.
So far I have tried bower installit and it is loading at the root of my project in/bower_components
And then in mine index.htmlI tried:
<link rel="import" href="../bower_components/paper-date-picker/paper-date-picker.html">
but Pub will not load files (it seems like it cannot determine relative paths in Bower).
source
share