I have an angular app that works absolutely fine on Eclipse (Neon) + Tomcat environment.
But when I export the project as a WAR file and deploy it on a Weblogic server (10.3.6) it does not load the app. It doesn't throw any error message as well. It just gives me a blank page on IE without loading any of the contents of the html.
It looks like I am missing some kind of configuration while exporting this to weblogic as a WAR file. How can I fix this?
Sample Code - index.html
<html ng-app="testapp" lang="en">
<head>
<title>New App</title>
<script src="angular.min.js"></script>
<script src="controller.js"></script>
</head>
<body ng-controller="ctrl">
{{var}}
</body>
</html>
controller.js
var app = angular.module('testapp', []);
app.controller('ctrl', function($scope, $http) {
$scope.var = 'wat2do';
});