notification fix bug

This commit is contained in:
2025-12-11 00:26:02 +03:30
parent 2be360639e
commit 33ead91506
4 changed files with 20 additions and 7 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ export default defineConfig({
entitiesTs: ['src/**/*.entity.ts'],
driver: PostgreSqlDriver,
dbName: DB_NAME,
debug: !isProduction,
debug: false,
clientUrl: `postgres://${DB_USER}:${encodedPassword}@${DB_HOST}:${DB_PORT}`,
ensureDatabase: isProduction
? false
+1 -1
View File
@@ -35,7 +35,7 @@ const dataBaseConfig: MikroOrmModuleAsyncOptions = {
driver: PostgreSqlDriver,
autoLoadEntities: true,
dbName: DB_NAME,
debug: !isProduction,
debug: false,
clientUrl: `postgres://${DB_USER}:${encodedPassword}@${DB_HOST}:${DB_PORT}`,
ensureDatabase: isProduction
? false