As far as references to directories are concerned, I understand
./ = current
../ = parent
But I am having a problem referencing my bower_components
directory in this bit of HTML code. The reference to the lib
folder works fine but not bower_components
. What am I missing?
main.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script src="lib/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>