Merge branch 'feature/sentry' into staging

This commit is contained in:
Maxime Lalo 2023-12-21 11:56:40 +01:00
commit 2df6413d0f

View File

@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
console.log(process.env);
const nextConfig = { const nextConfig = {
reactStrictMode: false, reactStrictMode: false,
publicRuntimeConfig: { publicRuntimeConfig: {
@ -56,7 +57,6 @@ const nextConfig = {
module.exports = nextConfig; module.exports = nextConfig;
// Injected content via Sentry wizard below // Injected content via Sentry wizard below
const { withSentryConfig } = require("@sentry/nextjs"); const { withSentryConfig } = require("@sentry/nextjs");
@ -96,5 +96,5 @@ module.exports = withSentryConfig(
// https://docs.sentry.io/product/crons/ // https://docs.sentry.io/product/crons/
// https://vercel.com/docs/cron-jobs // https://vercel.com/docs/cron-jobs
automaticVercelMonitors: true, automaticVercelMonitors: true,
} },
); );