diff --git a/src/app/app-routing.module.ts b/src/app/app.routes.ts similarity index 100% rename from src/app/app-routing.module.ts rename to src/app/app.routes.ts diff --git a/src/main.ts b/src/main.ts index 82cd469..56918a4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import { enableProdMode, importProvidersFrom } from '@angular/core'; import { environment } from './environments/environment'; import { bootstrapApplication } from '@angular/platform-browser'; import { AppComponent } from './app/app.component'; -import { APP_ROUTES } from './app/app-routing.module'; +import { APP_ROUTES } from './app/app.routes'; import { LocationStrategy, HashLocationStrategy } from '@angular/common'; import { RouterModule } from '@angular/router'; import { provideAnimations } from '@angular/platform-browser/animations'