Add grove-dl route and corresponding redirect to MediaFire folder in RedirectComponent

This commit is contained in:
2025-11-15 20:50:18 +01:00
parent 07048567a1
commit ec3435dccc
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -7,6 +7,11 @@ export const routes: Routes = [
redirectTo: 'redirect/worlddl',
pathMatch: 'full'
},
{
path: 'grove-dl',
redirectTo: 'redirect/grove-dl',
pathMatch: 'full'
},
{
path: 'redirect/:type',
loadComponent: () => import('./shared-components/redirect/redirect.component').then(m => m.RedirectComponent),