[DURACOM-234] WIP fix SSR

This commit is contained in:
Giuseppe Digilio
2024-03-28 16:37:42 +01:00
parent 3cb000db7c
commit abae9b9246
14 changed files with 87 additions and 37 deletions

8
src/express.tokens.ts Normal file
View File

@@ -0,0 +1,8 @@
import { InjectionToken } from '@angular/core';
import {
Request,
Response,
} from 'express';
export const REQUEST: InjectionToken<Request> = new InjectionToken<Request>('REQUEST');
export const RESPONSE: InjectionToken<Response> = new InjectionToken<Response>('RESPONSE');