Convert env vars to NEXT_PUBLIC_* vars
This commit is contained in:
parent
9ceb7cc00c
commit
bbe2698f0b
@ -1,5 +1,5 @@
|
||||
import LogRocket from "logrocket"
|
||||
import { applyMiddleware, configureStore, ThunkAction, Action } from "@reduxjs/toolkit"
|
||||
import { configureStore, ThunkAction, Action } from "@reduxjs/toolkit"
|
||||
|
||||
import pluginsReducer from "../slices/plugins"
|
||||
import pluginsTxtReducer from "../slices/pluginsTxt"
|
||||
|
@ -8,7 +8,10 @@ import setupLogRocketReact from "logrocket-react";
|
||||
|
||||
import store from "../lib/store";
|
||||
|
||||
LogRocket.init(process.env.LOGROCKET_ID || "0tlgj3/modmapper");
|
||||
const LOGROCKET_APP_ID =
|
||||
process.env.LOGROCKET_APP_ID || process.env.NEXT_PUBLIC_LOGROCKET_APP_ID;
|
||||
|
||||
LogRocket.init(LOGROCKET_APP_ID || "0tlgj3/modmapper");
|
||||
if (typeof window !== "undefined") setupLogRocketReact(LogRocket);
|
||||
|
||||
LogRocket.getSessionURL((sessionURL) => {
|
||||
|
@ -5,12 +5,13 @@
|
||||
import * as Sentry from '@sentry/nextjs';
|
||||
|
||||
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
|
||||
const SENTRY_ENVIRONMENT = process.env.SENTRY_ENVIRONMENT || process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT;
|
||||
|
||||
Sentry.init({
|
||||
dsn: SENTRY_DSN || 'https://dda36383332143d3a84c25a4f6aa6470@o1382253.ingest.sentry.io/6697231',
|
||||
// Adjust this value in production, or use tracesSampler for greater control
|
||||
tracesSampleRate: 1.0,
|
||||
environment: process.env.SENTRY_ENVIRONMENT || 'production',
|
||||
environment: SENTRY_ENVIRONMENT || 'production',
|
||||
// ...
|
||||
// Note: if you want to override the automatic release value, do not set a
|
||||
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
||||
|
@ -5,12 +5,13 @@
|
||||
import * as Sentry from '@sentry/nextjs';
|
||||
|
||||
const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
|
||||
const SENTRY_ENVIRONMENT = process.env.SENTRY_ENVIRONMENT || process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT;
|
||||
|
||||
Sentry.init({
|
||||
dsn: SENTRY_DSN || 'https://dda36383332143d3a84c25a4f6aa6470@o1382253.ingest.sentry.io/6697231',
|
||||
// Adjust this value in production, or use tracesSampler for greater control
|
||||
tracesSampleRate: 1.0,
|
||||
environment: process.env.SENTRY_ENVIRONMENT || 'production',
|
||||
environment: SENTRY_ENVIRONMENT || 'production',
|
||||
// ...
|
||||
// Note: if you want to override the automatic release value, do not set a
|
||||
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
||||
|
Loading…
Reference in New Issue
Block a user