fix: generated payment link base url

This commit is contained in:
Ahmed Bouhuolia
2025-12-14 13:26:34 +02:00
parent 2d4459c2f9
commit 151b623771
5 changed files with 25 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
import { registerAs } from '@nestjs/config';
export default registerAs('app', () => ({
baseUrl: process.env.BASE_URL,
}));

View File

@@ -1,3 +1,4 @@
import app from './app';
import systemDatabase from './system-database';
import tenantDatabase from './tenant-database';
import signup from './signup';
@@ -18,6 +19,7 @@ import throttle from './throttle';
import cloud from './cloud';
export const config = [
app,
systemDatabase,
cloud,
tenantDatabase,