0
I’m using Angular (version 4) and my code changes don’t make an automatic build of the application.
The default is to make changes to the code and already give the automatic build, as get Started from the Angular itself.
This is my app module.
@NgModule({
declarations: [
AppComponent,
AdminLayoutComponent,
AuthLayoutComponent,
BreadcrumbsComponent,
TitleComponent,
],
imports: [
BrowserModule,
HttpClientModule,
BrowserAnimationsModule,
SharedModule,
RouterModule.forRoot(AppRoutes),
FormsModule,
HttpModule,
ScrollModule,
NgDatepickerModule
],
exports: [ScrollModule],
providers: [
UserService, {
provide: HTTP_INTERCEPTORS,
useClass: TokenInterceptor,
multi: true
},
UnitService
],
bootstrap: [AppComponent]
})
export class AppModule {}
I am running with the application with ng serves through a linux terminal. I have tried it directly in Visual Studio Code, but without success too.
Fabio, it was permission problem anyway. I circled with root and it worked. Thanks!
– Guilherme Nass