feat: use localhost on dev env

This commit is contained in:
2026-06-19 03:59:35 -03:00
parent 5137543060
commit cfe6ccbf2b
+1 -1
View File
@@ -1,4 +1,4 @@
export const DB_BASE_URL = 'https://dbd-db.neru.rip'; export const DB_BASE_URL = process.env.NODE_ENV === 'development' ? '' : 'https://dbd-db.neru.rip';
const _cache = new Map<string, Promise<any>>(); const _cache = new Map<string, Promise<any>>();