I need to rename bundles generated post ng serve of Angular Application.
Currently, the bundles are:
vendor.js
polyfills.js
styles.css
styles.js
main.js
runtime.js
I need to rename these files:
vendor-<name_application>.js
polyfills-<name_application>.js
styles-<name_application>.css
styles-<name_application>.js
main-<name_application>.js
runtime-<name_application>.js
Is it possible?
This can be done with
--named-chunksargument or webpack plugin.check this link.