I have set up an AngularJS application with a controller and a partial.
Within my controller, I initialized an array of links like this:
$scope.links = ['http://www.example.com/1','http://www.example.com/2'];
Here is the code snippet from my partial template:
<div ng-repeat="link in links">
<a href="{{link}}" target="_blank">Link</a>
</div>
However, I am encountering an issue. When running the NodeJS app locally, the URLs appear as
http://dev-server.local:3000/"http://www.example.com"
I need some assistance in ensuring that the hyperlinks from my controller are inserted into the partial template without Angular appending the page URL. Can anyone help me with this?