2020-03-15 02:50:56 -04:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
2020-10-26 17:02:41 -04:00
|
|
|
import * as Sentry from "@sentry/react";
|
2020-03-15 02:50:56 -04:00
|
|
|
import App from "./App";
|
2020-03-19 03:56:42 -04:00
|
|
|
import Modal from "react-modal";
|
|
|
|
|
2020-04-07 04:18:08 -04:00
|
|
|
// Add css for simplebar
|
|
|
|
import "simplebar/dist/simplebar.min.css";
|
|
|
|
|
2020-03-15 02:50:56 -04:00
|
|
|
import * as serviceWorker from "./serviceWorker";
|
2020-03-15 01:04:30 -04:00
|
|
|
|
2020-03-20 05:29:35 -04:00
|
|
|
import "./index.css";
|
|
|
|
|
2020-10-26 17:02:41 -04:00
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
|
|
Sentry.init({
|
|
|
|
dsn:
|
|
|
|
"https://bc1e2edfe7ca453f8e7357a48693979e@o467475.ingest.sentry.io/5493956",
|
2020-10-26 18:47:10 -04:00
|
|
|
release: "owlbear-rodeo@" + process.env.REACT_APP_VERSION,
|
2020-10-27 19:34:11 -04:00
|
|
|
// Ignore resize error as it is triggered by going fullscreen on slower computers
|
|
|
|
ignoreErrors: ["ResizeObserver loop limit exceeded"],
|
2020-10-26 17:02:41 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-19 03:56:42 -04:00
|
|
|
Modal.setAppElement("#root");
|
2020-03-15 01:04:30 -04:00
|
|
|
|
2020-04-14 22:50:21 -04:00
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|
|
|
|
|
2020-03-15 01:04:30 -04: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();
|