In this video we briefly explained about runtime.js, polyfills.js, styles.js, vendor.js, main.js
runtime.js is the webpack loader. This file contains webpack utilities that are needed to load other files.
polyfills.js is for making our application compatible for different browsers.
styles.css contains all styles declare in styles section of angular.json file
scripts.js contains the scripts we declare in the scripts section of angular.json file
vendor.js which includes all the code from our external libraries
main.js contains all application code including components (ts, html and css codes), pipes, directives, services and all other imported modules (including third party) #ottit #technologytutorials