From 57573d5d29607cab987d8e6e0b736e4aa6944fb5 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 15 Jun 2025 14:08:25 +0200 Subject: [PATCH] Fix missing assetlinks.json --- apps/api/src/app/app.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/app/app.module.ts b/apps/api/src/app/app.module.ts index 219d05564..8f342eb43 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -127,8 +127,8 @@ import { UserModule } from './user/user.module'; } }), ServeStaticModule.forRoot({ - serveRoot: '/.well-known', - rootPath: join(__dirname, '..', 'client', '.well-known') + rootPath: join(__dirname, '..', 'client', '.well-known'), + serveRoot: '/.well-known' }), SitemapModule, SubscriptionModule,