Reputation: 49
I am completely new to polymer 1.x. i like to know how to import javascript file to my index.html . normal way of importing javascript not working for production version
Upvotes: 0
Views: 1184
Reputation: 2381
If you are new to polymer below are the good resources to start understanding it
The answer for your question is in routing.html in the polymer-starter-kit. You just include it in script tag as you do in any html file.
<script src="../bower_components/page/page.js"></script>
Upvotes: 1