Files
grungnet/src/index.js

40 lines
1.3 KiB
JavaScript
Raw Normal View History

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";
import Modal from "react-modal";
// 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
import "./index.css";
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
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-10-27 08:02:41 +11:00
Modal.setAppElement("#root");
2020-03-15 16:04:30 +11: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();