Computer Science, asked by shivakumaryadav6170, 11 months ago

The distinct feature of webpack is

Answers

Answered by mritunjayy
0
bundle is the output file generated by webpack. It contains all of the modules which are used in application. Bundles generation process is regulated by webpack config file. Answer: The entry object is where webpack looks to start building the bundle, at this point the application starts executing.
Answered by AadilPradhan
0

webpack is nothing but a module bundler for javascript applications. Webpack recursively builds every module in your application, then packs all those modules together into a small number of bundles.


The output file generated by webpack is called bundle. It contains all the modules which are used in application. webpack config file regulates the bundles generation process.

Similar questions