I am using an HTML Template, so i want to include js files to the components.
tried adding script tags in index.html
<script src="assets/plugins/pace/pace.min.js" type="text/javascript"></script>
<script src="assets/plugins/jquery/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="assets/plugins/modernizr.custom.js" type="text/javascript"></script>
i get this console error
SyntaxError: expected expression, got '<'
but css is working fine
also can they be loaded to specific compenents only ? as login component would have a different/less files
any ideas ?