Set IS_DEV to false for production readiness

This update transitions the application out of development mode. It ensures the correct configuration for production environments by disabling dev-specific behavior.
This commit is contained in:
Jepp9350
2025-05-01 15:59:53 +02:00
parent bf734a7f77
commit fa53936e1c
+1 -1
View File
@@ -1,6 +1,6 @@
import '@/themes/Dark.sass';
import '@popperjs/core';
export const IS_DEV = true;
export const IS_DEV = false;
// Development mode
export const POS_STEP_1_VERSION = (IS_DEV ? 2 : 1);