diff --git a/src/utils/default.ts b/src/utils/default.ts index 1b42a83..283b2ef 100644 --- a/src/utils/default.ts +++ b/src/utils/default.ts @@ -12,7 +12,7 @@ import { Position } from '../Enums/Position'; /// EDITOR DEFAULTS /// /** Enable fast boot and disable main menu (0 = disabled, 1 = loading, 2 = loaded) */ -export const FAST_BOOT = 0; +export const FAST_BOOT = import.meta.env.PROD ? 2 : 0; /** Disable any call to the API (default = false) */ export const DISABLE_API = false;