I get the following error mesasges in my browser console:
GET http://*:54559/Scripts/ 403 (Forbidden)
http://:54559/Content/css/ 400 (Bad Request)
Uncaught ReferenceError: $ is not defined
In my _Layout.shtml I use the following code to try and include css/bootstrap.
@Styles.Render("~/Content/css/*")
<!-- JavaScript -->
@Scripts.Render("~/Scripts/")
@RenderSection("scripts", required: false)
<script>
// Activates the Carousel
$('.carousel').carousel({
interval: 5000
})
</script>
The file paths look ok as in my project the css is located at "Content/css" and scripts is just a folder at the top level called "Scripts"
Any ideas?