mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 22:23:28 +00:00
This PR wires up a polyfill for window.ipc which allows us to progressively migrate the codebase to a format which supports context bridge. This avoids a big bang effort where every non sandboxed call has to be migrated before we can run the code. Once all calls to node modules are removed from the renderer and only exists in preload.ts. We will turn on context isolation and use the context bridge for communication instead.
24 lines
733 B
TypeScript
24 lines
733 B
TypeScript
import { enableProdMode } from "@angular/core";
|
|
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
|
|
|
import { ipc } from "../preload";
|
|
import { isDev } from "../utils";
|
|
|
|
// Temporary polyfill for preload script
|
|
(window as any).ipc = ipc;
|
|
|
|
require("../scss/styles.scss");
|
|
require("../scss/tailwind.css");
|
|
|
|
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());
|