mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00

* chore: update copyright year in license headers * Revert "chore: update copyright year in license headers" This reverts commit 3e58129c431b9a491089ce36b908f9bb6ba38ed3. * chore: update copyright year in license headers * fix: sort go imports * fix: add missing license headers
32 lines
747 B
TypeScript
32 lines
747 B
TypeScript
/*
|
|
* Copyright (c) 2021 - 2025, Ludvig Lundgren and the autobrr contributors.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { Buffer } from "buffer";
|
|
|
|
import "./index.css";
|
|
|
|
import { App } from "./App";
|
|
import { InitializeGlobalContext } from "./utils/Context";
|
|
|
|
declare global {
|
|
interface Window { APP: APP; }
|
|
}
|
|
|
|
window.APP = window.APP || {};
|
|
// Apparently Stacktracey requires this for some weird reason
|
|
// (at least in local dev env)
|
|
window.Buffer = Buffer;
|
|
|
|
// Initializes auth and theme contexts
|
|
InitializeGlobalContext();
|
|
|
|
const root = createRoot(document.getElementById("root")!);
|
|
root.render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|