20 lines
639 B
TypeScript
20 lines
639 B
TypeScript
import { enableProdMode } from '@angular/core';
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
|
|
import { isDev } from 'jslib/electron/utils';
|
|
|
|
// tslint:disable-next-line
|
|
require('../scss/styles.scss');
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
if (!isDev()) {
|
|
enableProdMode();
|
|
}
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule, { preserveWhitespaces: true });
|
|
|
|
// Disable drag and drop to prevent malicious links from executing in the context of the app
|
|
document.addEventListener('dragover', (event) => event.preventDefault());
|
|
document.addEventListener('drop', (event) => event.preventDefault());
|