Disable fast boot in DEV env and enable it to loaded in PROD
This commit is contained in:
parent
14c7ed0cff
commit
12727d752c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue