Skip to main content
2 votes
1 answer
149 views

I have main route: { path: 'signup', loadComponent: () => import('./signup/signup.component').then(m => m.SignUpComponent), children: signUpRoutes }, and inside signUpRoutes I ...
A. Gladkiy's user avatar
  • 3,502
1 vote
0 answers
81 views

The url: http://www.example.com/#/orders/new/today/3640963 shows me the 'new tab', with the order details view open. This is when I click to it in the app. If I copy that URL and paste it in a new ...
Pepper's user avatar
  • 729
3 votes
1 answer
260 views

I'm trying to change my Angular 17 project to be a standalone project. But some of the fundamental files are different than how they are defined in tutorials and other people's projects. I didn't have ...
Rand Ashley's user avatar
2 votes
1 answer
111 views

By default, the login page opens if the user is logged out. The onLogin method works fine the first time and navigates to the home page. On logout, it navigates back to the login page. If I try to log ...
kumarp's user avatar
  • 23
1 vote
1 answer
212 views

I'm working on an Angular 19 app that uses a custom Angular library, and I'm having trouble getting the routing inside the library to work properly. The app is a legacy app and all the components are ...
Kedar Marathe's user avatar
1 vote
2 answers
133 views

In my Angular application, users can configure settings on a particular page (e.g., filters, view preferences, etc.). When the user navigates to another route and then returns to the original page, I ...
Ruchita Deshmukh's user avatar
1 vote
1 answer
81 views

The problem us basically explained in the title. I have router-outlet and components with :enter and :leave animations. During navigating from one to another both components are in outlet at the same ...
Michał B's user avatar
  • 555
2 votes
1 answer
70 views

I am getting this error from router-outlet directive. Can anyone please help me why it is occuring as i have no clue. All the imports have been added on app.module.ts file but still its saying that ...
Cortex's user avatar
  • 49
0 votes
2 answers
78 views

How to use a secondary router outlet without ng modules correctly enabling page reload by url? I have an app component with a router: <main> <router-outlet></router-outlet> &...
tobias hassebrock's user avatar
5 votes
2 answers
3k views

I try to build Angular 19 SSR using ng build --configuration production --aot but get the following error: [ERROR] The 'detail/:id' route uses prerendering and includes parameters, but '...
Menahem Gil's user avatar
0 votes
1 answer
61 views

I have a question about angular dynamic component loading through an environment config file. Below is a sample of my environment file: routes: [ { name: 'auth/logout', path: '../../...
Damian's user avatar
  • 304
1 vote
1 answer
51 views

I use in my app the Material Sidebar and navigate with the router. Basically it looks like <mat-sidenav-container [hasBackdrop]="true" autosize> <mat-sidenav (opened)=&...
LeO's user avatar
  • 5,401
2 votes
1 answer
50 views

I have this configuration in my routing in Angular: ... { path: 'account', canActivate: [AuthGuardService], children: [ { path: '', ...
Michał B's user avatar
  • 555
1 vote
1 answer
62 views

I am currently attempting to learn Angular and am using an existing API as a back-end. One of the types of pages is a dynamic news page following the traditional news/news-item-slug pattern. I am ...
Username_null's user avatar
0 votes
0 answers
185 views

Problem I am using Angular 19 with ngx-translate-router to handle localized routes. However, my app always redirects to /en on startup, even when a different language is present in the URL. For ...
Sergej's user avatar
  • 2,264

15 30 50 per page
1
2 3 4 5
251