{"version":3,"sources":["src/app/app-routing.module.ts","src/app/app.component.ts","src/app/app.component.html","node_modules/@angular/animations/fesm2022/browser.mjs","node_modules/@angular/platform-browser/fesm2022/animations.mjs","src/app/core/core.module.ts","src/app/app.module.ts","src/main.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\nimport { RouterModule, Routes } from '@angular/router';\r\n\r\nconst routes: Routes = [\r\n { path: '', redirectTo: '/identity/login', pathMatch: 'full' },\r\n {path:'identity',loadChildren:()=>import('./features/identity/identity.module').then(x=>x.IdentityModule)},\r\n {path:'home',loadChildren:()=>import('./features/home/home.module').then(x=>x.HomeModule)},\r\n {path:'emergency',loadChildren:()=>import('./features/emergency/emergency.module').then(x=>x.EmergencyModule)},\r\n {path:'vehicle',loadChildren:()=>import('./features/vehicle/vehicle.module').then(x=>x.VehicleModule)},\r\n {path:'personaldoc',loadChildren:()=>import('./features/personaldoc/personaldoc.module').then(x=>x.PersonaldocModule)},\r\n {path:'address',loadChildren:()=>import('./features/address/address.module').then(x=>x.AddressModule)},\r\n {path:'userprofile',loadChildren:()=>import('./features/userprofile/userprofile.module').then(x=>x.UserprofileModule)},\r\n {path:'meeting',loadChildren:()=>import('./features/meeting/meeting.module').then(x=>x.MeetingModule)},\r\n {path:'trip',loadChildren:()=>import('./features/trip/trip.module').then(x=>x.TripModule)},\r\n {path:'finance',loadChildren:()=>import('./features/finance/finance.module').then(x=>x.FinanceModule)},\r\n {path:'financebalance',loadChildren:()=>import('./features/financebalance/financebalance.module').then(x=>x.FinancebalanceModule)},\r\n {path:'product',loadChildren:()=>import('./features/product/product.module').then(x=>x.ProductModule)},\r\n {path:'shopping',loadChildren:()=>import('./features/shopping/shopping.module').then(x=>x.ShoppingModule)},\r\n {path:'report',loadChildren:()=>import('./features/report/report.module').then(x=>x.ReportModule)},\r\n {path:'motoclub',loadChildren:()=>import('./features/motoclub/motoclub.module').then(x=>x.MotoclubModule)},\r\n];\r\n\r\n@NgModule({\r\n imports: [RouterModule.forRoot(routes)],\r\n exports: [RouterModule]\r\n})\r\nexport class AppRoutingModule { }\r\n","import { Component } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'app-root',\r\n templateUrl: './app.component.html',\r\n styleUrl: './app.component.css'\r\n})\r\nexport class AppComponent {\r\n title = 'caramel.front';\r\n}\r\n","