@djangocfg/api 2.1.233 → 2.1.235

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1388,9 +1388,13 @@ var BaseClient = class {
1388
1388
 
1389
1389
  // src/auth/utils/logger.ts
1390
1390
  import { createConsola as createConsola3 } from "consola";
1391
- var isDevelopment = process.env.NODE_ENV === "development";
1391
+
1392
+ // src/auth/utils/env.ts
1393
+ var isDev = process.env.NODE_ENV === "development";
1394
+
1395
+ // src/auth/utils/logger.ts
1392
1396
  var isStaticBuild2 = process.env.NEXT_PUBLIC_STATIC_BUILD === "true";
1393
- var showLogs = isDevelopment || isStaticBuild2;
1397
+ var showLogs = isDev || isStaticBuild2;
1394
1398
  var logger = createConsola3({
1395
1399
  level: showLogs ? 4 : 1
1396
1400
  // dev: debug, production: errors only