From 990d268460941c6c748d328b2c214e9c13a1f8ea Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Wed, 18 Feb 2026 11:01:29 +0100 Subject: [PATCH] auslieferung --- idp/src/app.controller.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/idp/src/app.controller.ts b/idp/src/app.controller.ts index 82fcae0..3935d29 100644 --- a/idp/src/app.controller.ts +++ b/idp/src/app.controller.ts @@ -4,8 +4,8 @@ import { Response } from 'express'; @Controller() export class AppController { - // @Get('*') - // handleClientRoutes(@Res() res: Response) { - // res.sendFile(join(__dirname, '..', 'client', 'index.html')); - // } + @Get('*') + handleClientRoutes(@Res() res: Response) { + res.sendFile(join(__dirname, '..', 'client', 'index.html')); + } }