feat(auth): refactor authentication to use cookies for token management and add CookieService

This commit is contained in:
2026-07-03 14:16:22 -03:00
parent 3971970975
commit 1df6964859
4 changed files with 134 additions and 56 deletions

View File

@@ -1,10 +1,6 @@
import { RenderMode, ServerRoute } from '@angular/ssr';
export const serverRoutes: ServerRoute[] = [
{
path: 'checkout',
renderMode: RenderMode.Client
},
{
path: '**',
renderMode: RenderMode.Server