@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.
@@ -1427,9 +1427,13 @@ var BaseClient = class {
1427
1427
 
1428
1428
  // src/auth/utils/logger.ts
1429
1429
  var import_consola8 = require("consola");
1430
- var isDevelopment = process.env.NODE_ENV === "development";
1430
+
1431
+ // src/auth/utils/env.ts
1432
+ var isDev = process.env.NODE_ENV === "development";
1433
+
1434
+ // src/auth/utils/logger.ts
1431
1435
  var isStaticBuild2 = process.env.NEXT_PUBLIC_STATIC_BUILD === "true";
1432
- var showLogs = isDevelopment || isStaticBuild2;
1436
+ var showLogs = isDev || isStaticBuild2;
1433
1437
  var logger = (0, import_consola8.createConsola)({
1434
1438
  level: showLogs ? 4 : 1
1435
1439
  // dev: debug, production: errors only