angular - ng build --aot with out prod mode is not compiling in AOT -
can use aot mode dev or qa mode passing --aot flags in ng build command "ng build --env=dev --aot". have tried not compiling 'aot'? 1 suggest solution?
yes, can adding flag
ng build --aot=true
the default value --aot false. (in non prod environments)
you can see more detail build options here https://github.com/angular/angular-cli/blob/master/docs/documentation/build.md
Comments
Post a Comment