mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
Now that the last usages of ModalService is removed from the web portions we can finally remove jQuery and Popper.js. This PR also removes bootstrap js imports since it would drag in jQuery as a peer dependency. Note: Both dependencies still exists in the lockfile as they are peer dependencies of boostrap.
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import { enableProdMode } from "@angular/core";
|
|
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
|
|
|
import { AppModule } from "./app/app.module";
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
enableProdMode();
|
|
}
|
|
|
|
void platformBrowserDynamic().bootstrapModule(AppModule);
|