2021-12-17 15:57:11 +01:00
|
|
|
import { enableProdMode } from "@angular/core";
|
|
|
|
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
2021-06-16 20:28:05 +02:00
|
|
|
|
2021-12-17 15:57:11 +01:00
|
|
|
import "bootstrap";
|
|
|
|
import "jquery";
|
|
|
|
import "popper.js";
|
2021-06-16 20:28:05 +02:00
|
|
|
|
2022-07-25 15:13:54 +02:00
|
|
|
import { AppModule } from "./app/app.module";
|
2021-06-16 20:28:05 +02:00
|
|
|
|
2021-12-17 15:57:11 +01:00
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
|
|
enableProdMode();
|
2021-06-16 20:28:05 +02:00
|
|
|
}
|
|
|
|
|
2024-02-02 21:13:37 +01:00
|
|
|
// FIXME: Verify that this floating promise is intentional. If it is, add an explanatory comment and ensure there is proper error handling.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
2021-06-16 20:28:05 +02:00
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule, { preserveWhitespaces: true });
|