Add logrocket

Useful for figuring out what went wrong during an error or to see how users are using the app.
This commit is contained in:
Tyler Hallada 2022-08-29 00:48:03 -04:00
parent 2bd5227287
commit aa2bd77435
3 changed files with 15 additions and 0 deletions

11
package-lock.json generated
View File

@ -13,6 +13,7 @@
"downshift": "^6.1.7",
"javascript-color-gradient": "^1.3.2",
"js-cookie": "^3.0.1",
"logrocket": "^3.0.1",
"mapbox-gl": "^2.6.1",
"minisearch": "^5.0.0",
"next": "12.1.1-canary.15",
@ -2348,6 +2349,11 @@
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true
},
"node_modules/logrocket": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/logrocket/-/logrocket-3.0.1.tgz",
"integrity": "sha512-jOWG+jEzobKVxGytzZ+4KGm2kiMQMRTHab2uDWQyVZcHfEF38BlCH1yjQVY4LCmuQUwZitP9biMzJZnyUQ0dtQ=="
},
"node_modules/loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
@ -5208,6 +5214,11 @@
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true
},
"logrocket": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/logrocket/-/logrocket-3.0.1.tgz",
"integrity": "sha512-jOWG+jEzobKVxGytzZ+4KGm2kiMQMRTHab2uDWQyVZcHfEF38BlCH1yjQVY4LCmuQUwZitP9biMzJZnyUQ0dtQ=="
},
"loose-envify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",

View File

@ -16,6 +16,7 @@
"downshift": "^6.1.7",
"javascript-color-gradient": "^1.3.2",
"js-cookie": "^3.0.1",
"logrocket": "^3.0.1",
"mapbox-gl": "^2.6.1",
"minisearch": "^5.0.0",
"next": "12.1.1-canary.15",

View File

@ -2,9 +2,12 @@ import "../styles/globals.css";
import { Provider } from "react-redux";
import type { AppProps } from "next/app";
import LogRocket from "logrocket";
import store from "../lib/store";
LogRocket.init("0tlgj3/modmapper");
function MyApp({ Component, pageProps }: AppProps) {
return (
<Provider store={store}>