39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import App from "./app/App";
|
|
import { fas } from "@fortawesome/free-solid-svg-icons";
|
|
import { far } from "@fortawesome/free-regular-svg-icons";
|
|
import { fab } from "@fortawesome/free-brands-svg-icons";
|
|
import { library } from "@fortawesome/fontawesome-svg-core";
|
|
import { isEnvBrowser } from "./utils/misc";
|
|
import ErrorBoundary from "./providers/errorBoundary";
|
|
import { ThemeProvider } from "./providers/themeProvider";
|
|
|
|
library.add(fas, far, fab);
|
|
|
|
if (isEnvBrowser()) {
|
|
const root = document.getElementById("root");
|
|
// https://i.imgur.com/iPTAdYV.png - Night time img
|
|
// https://i.imgur.com/3pzRj9n.png - Day time img
|
|
//
|
|
// root!.style.backgroundImage = 'url("/images/carShader.png")';
|
|
root!.style.backgroundSize = "cover";
|
|
root!.style.backgroundRepeat = "no-repeat";
|
|
root!.style.backgroundPosition = "center";
|
|
}
|
|
|
|
const root = document.getElementById("root");
|
|
|
|
createRoot(root!).render(
|
|
<StrictMode>
|
|
<ErrorBoundary>
|
|
{" "}
|
|
{/* Catches JS errors without hiding UI and keeps the app running */}
|
|
<ThemeProvider defaultTheme="dark">
|
|
<App />
|
|
</ThemeProvider>
|
|
</ErrorBoundary>
|
|
</StrictMode>
|
|
);
|