Hey, I've run into some errors in my code and could use some help...
GET file:///C:/bower_components/angular/angular.min.js net::ERR_FILE_NOT_FOUND
index.html:19 GET file:///C:/bower_components/angular/angular-route.min.js net::ERR_FILE_NOT_FOUND
index.html:20 GET file:///C:/something.js net::ERR_FILE_NOT_FOUND
index.html:21 GET file:///C:/controller.js net::ERR_FILE_NOT_FOUND
I have a feeling it has something to do with the script tags....
<!DOCTYPE html>
<html ng-app="MyApp">
<head>
<meta charset="utf-8">
<title></title>
<base href="/" />
</head>
<body ng-controller="MainController as main">
<a ui-sref="Page1">Page 1</a> | <a ui-sref="Page2">Page 2</a> | <a ui-sref="Nowhere">Nowhere</a>
<hr />
$state.current.templateUrl = {{main.$state.current.templateUrl}}
<hr />
<ui-view></ui-view>
<script src="/bower_components/angular/angular.min.js"></script>
<script src="/bower_components/angular/angular-route.min.js"></script>
<script src="/something.js"></script>
<script src="/controller.js"></script>
</body>
</html>
I'm really not sure what's going on here. My teacher insists the syntax is correct, but I can't figure out the issue.