Webpack starts building the dependency graph ?
Answers
Answered by
0
Answer:
The entry point tells Webpack where to start building its dependency graph from. Webpack starts processing the module at the entry point and roams around the application source code to look for other modules that depend on the entry module. ... Multiple entry points can be specified in a Webpack config file
Explanation:
Similar questions