ng new ng-try --style=scss --routing
ng g c componentName
ng g s serviceName
ng g d directiveName
- open app.module.ts, add code below :
import {FormsModule} from '@angular/forms';
imports: [
FormsModule
],
Buka environmentsenvironment.ts, jadikan production: true
export const environment = {
production: true
};
kaitannya adalah dengan main.ts
if (environment.production) {
enableProdMode();
}
ng serve
ng build --prod
hasilnya cek di folder dist
- Directive (https://www.youtube.com/watch?v=DNoPO-WrKyM)
- Animation