In developer section (localhost:4200) is working fine. After completing the build application loading and working fine but url when i type and press enter it is not working.
my router:
export const appRoutes : Routes = [
{ path: '', redirectTo: 'material', pathMatch: 'full' },
{path:'material',component: MaterialComponent},
];
and my module.ts file
imports: [
RouterModule.forRoot(appRoutes,{ enableTracing: true }),BrowserModule,FormsModule,HttpModule,MaterialModule,BrowserAnimationsModule,RouterModule
],
Error:
Why giving custom url is not working after build?