From 34fa6d2974d3561eac87975e4dedf9ca1eea2121 Mon Sep 17 00:00:00 2001 From: Justin McLellan Date: Sat, 17 Jun 2023 07:59:03 -0500 Subject: [PATCH] rename app-routes file --- src/app/{app-routing.module.ts => app.routes.ts} | 0 src/main.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/app/{app-routing.module.ts => app.routes.ts} (100%) 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'