Here's my index.html
file:
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Price Tracker</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- bower:css -->
<link rel="stylesheet" href="../bower_components/bootstrap-css/css/bootstrap.min.css" />
<!-- endbower -->
</head>
<body>
<!-- bower:js -->
<script src="../bower_components/jquery/dist/jquery.js"></script>
<script src="../bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/bootstrap-css/js/bootstrap.min.js"></script>
<!-- endbower -->
</body>
</html>
My gulpfile
picks up the bower dependencies correctly and adds them to the index. But I want gulp to pick up a custom CSS file.
Is this possible ?