Angular documentation states:
*Ahead-of-Time (AOT), which compiles your application and libraries at build time. This is the
default since Angular 9.*
So if I want to compile for production my Angular 12 application with AOT I just need to type ng build without adding --prod and without adding specific configuration neither in angular.json nor in package.json?
This is the ng build command insieme my package.json:
...
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"prepare": "husky install"
},
...
Thank for you help