Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Clark <sumatra.johnchlark@icloud.com>2020-08-29 19:38:30 +0300
committerGitHub <noreply@github.com>2020-08-29 19:38:30 +0300
commitb3b7a0273cdd26706caa68a78da08d64ceea9958 (patch)
tree03c6827d1fff79d9c4c61ad60c3c51e916308440 /next.config.js
parent0a2f295b2c3de846ac47749d64c1fd8915a93b0e (diff)
Upgrade to sentry (#374)
Diffstat (limited to 'next.config.js')
-rw-r--r--next.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/next.config.js b/next.config.js
index 21d0098..738db8e 100644
--- a/next.config.js
+++ b/next.config.js
@@ -9,6 +9,7 @@ module.exports = {
GOOGLE_ANALYTICS: localEnv && localEnv.GOOGLE_ANALYTICS,
REPORT_EMAIL: localEnv && localEnv.REPORT_EMAIL,
DISALLOW_ANONYMOUS_LINKS: localEnv && localEnv.DISALLOW_ANONYMOUS_LINKS,
- DISALLOW_REGISTRATION: localEnv && localEnv.DISALLOW_REGISTRATION
+ DISALLOW_REGISTRATION: localEnv && localEnv.DISALLOW_REGISTRATION,
+ SENTRY_PUBLIC_DSN: localEnv && localEnv.SENTRY_PUBLIC_DSN,
}
};