Installed xampp. Developing a project on AngularJS. There is a part of the page that I want to put in a separate file (Navigation menu). I use the ng-include directive to implement. The first time everything pulls up normally, and then, if I, for example, removed from: Main About the project Contacts "contacts, then after reloading the page there remains the version that I downloaded initially. After reloading the server, nothing is updated anyway. Although the Contacts are already and there is no mention. Why so?
<!doctype html> <html ng-app="mainPageApp"> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> <link rel="stylesheet" href="css/style.css"> <title>...</title> </head> <body> <ng-include src="'headMenu.html'"></ng-include> </body> </html>