refactor(main): extraer configuración, ventanas, procesos y errores

This commit is contained in:
Pandipipas
2026-02-21 18:30:07 +01:00
parent 4eb639a6c5
commit e4e3ea4459
6 changed files with 426 additions and 346 deletions
+14
View File
@@ -0,0 +1,14 @@
export const NODE_RUNTIME_NAME = "electron internal node";
export const DEFAULT_WINDOW_BACKGROUND = "#0f0f0f";
export const DEFAULT_WINDOW_SIZE = {
width: 1920,
height: 1080,
minWidth: 1920,
minHeight: 1080,
} as const;
export const LOADING_WINDOW_SIZE = {
width: 300,
height: 300,
} as const;