2020-03-15 17:50:56 +11:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom";
|
2020-10-27 08:02:41 +11:00
|
|
|
import * as Sentry from "@sentry/react";
|
2020-03-15 17:50:56 +11:00
|
|
|
import App from "./App";
|
2020-03-19 18:56:42 +11:00
|
|
|
import Modal from "react-modal";
|
|
|
|
|
|
2020-04-07 18:18:08 +10:00
|
|
|
// Add css for simplebar
|
|
|
|
|
import "simplebar/dist/simplebar.min.css";
|
|
|
|
|
|
2020-03-15 17:50:56 +11:00
|
|
|
import * as serviceWorker from "./serviceWorker";
|
2020-03-15 16:04:30 +11:00
|
|
|
|
2020-03-20 20:29:35 +11:00
|
|
|
import "./index.css";
|
|
|
|
|
|
2020-12-03 12:29:33 +11:00
|
|
|
if (process.env.REACT_APP_LOGGING === "true") {
|
|
|
|
|
Sentry.init({
|
|
|
|
|
dsn:
|
|
|
|
|
"https://bc1e2edfe7ca453f8e7357a48693979e@o467475.ingest.sentry.io/5493956",
|
|
|
|
|
release: "owlbear-rodeo@" + process.env.REACT_APP_VERSION,
|
|
|
|
|
// Ignore resize error as it is triggered by going fullscreen on slower computers
|
2020-11-28 08:51:56 +11:00
|
|
|
// Ignore quota error
|
2020-11-28 08:55:25 +11:00
|
|
|
// Ignore XDR encoding failure bug in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1678243
|
2021-01-14 12:37:46 +11:00
|
|
|
// Ignore LastPass extension text error
|
2020-12-03 12:29:33 +11:00
|
|
|
ignoreErrors: [
|
|
|
|
|
"ResizeObserver loop limit exceeded",
|
2020-11-28 08:55:25 +11:00
|
|
|
"QuotaExceededError",
|
|
|
|
|
"XDR encoding failure",
|
2021-01-14 12:37:46 +11:00
|
|
|
"Assertion failed: Input argument is not an HTMLInputElement",
|
2020-12-03 12:29:33 +11:00
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-10-27 08:02:41 +11:00
|
|
|
|
2020-03-19 18:56:42 +11:00
|
|
|
Modal.setAppElement("#root");
|
2020-03-15 16:04:30 +11:00
|
|
|
|
2020-04-15 12:50:21 +10:00
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|
|
|
|
|
|
2020-03-15 16:04:30 +11:00
|
|
|
// If you want your app to work offline and load faster, you can change
|
|
|
|
|
// unregister() to register() below. Note this comes with some pitfalls.
|
|
|
|
|
// Learn more about service workers: https://bit.ly/CRA-PWA
|
|
|
|
|
serviceWorker.unregister();
|