feat(back-end): cors config update
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 1m12s
Build, Test and Deploy / build-and-push (push) Successful in 35s
Build, Test and Deploy / deploy (push) Successful in 8s

This commit is contained in:
2026-02-12 16:10:10 +01:00
parent 89d84ed369
commit 5a84fb13c0
2 changed files with 12 additions and 1 deletions

View File

@@ -32,6 +32,10 @@ export const routes: Routes = [
{
path: '',
loadChildren: () => import('./features/legal/legal.routes').then(m => m.LEGAL_ROUTES)
},
{
path: '**',
redirectTo: ''
}
]
}