You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
672 B

import electronDebug from 'electron-debug';
import isNotPackaged from 'electron-is-dev';
import { debug, error } from 'electron-log';
import WindowManager from './windowManager';
const isDev = isNotPackaged && process.env.NODE_ENV !== 'production';
// disable the Electron Security Warnings shown when access the dev url
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = `${isDev}`;
debug(`Starting Electron main process`);
// add keyboard shortcuts and auto open dev tools for all windows
electronDebug({ isEnabled: isDev });
try {
const windowManager = new WindowManager(isDev);
windowManager.start();
} catch (e) {
error('Unable to start WindowManager', e);
}