Angular project, ng-app directive only found in vendor.bundle.js.map

46 views Asked by At

I've been given an Angular project that I am trying to understand. For now I am able to start the project with the command "gulp serve" and then I can browse to the development server from Chrome with "http://localhost:3000".

When I search for all "ng-app" directives (from Visual Studio Code) I can only see some that are in 3 files named "vendor.bundle.js.map".

I thought that there should be at least one index.html file that would have this directive...

If you have any clue on this... Thanks !

1

There are 1 answers

0
AudioBubble On

It is because the use of "let appModule = angular.module('app', [.....]);" that replaces the use of "ng-app" directive.