grungnet/src/index.js

32 lines
997 B
JavaScript
Raw Normal View History

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";
import Modal from "react-modal";
// 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
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,
// 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
});
}
Modal.setAppElement("#root");
2020-03-15 01:04:30 -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();