From 5731e58e05073551fb9d5610a5afc929089d3fb4 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Tue, 31 Oct 2023 20:10:56 +0530 Subject: [PATCH] chore: added instrumentationHook in consent and dashboard rebase --- apps/consent/next.config.js | 7 ++++--- apps/dashboard/next.config.js | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/consent/next.config.js b/apps/consent/next.config.js index 48557f2fa3..8c8a75c594 100644 --- a/apps/consent/next.config.js +++ b/apps/consent/next.config.js @@ -3,7 +3,8 @@ module.exports = { experimental: { serverActions: true, - outputFileTracingRoot: require('path').join(__dirname, '../../'), + outputFileTracingRoot: require("path").join(__dirname, "../../"), + instrumentationHook: true, }, - output: 'standalone', -}; + output: "standalone", +} diff --git a/apps/dashboard/next.config.js b/apps/dashboard/next.config.js index a37a9b7cdc..37bcd5be6d 100644 --- a/apps/dashboard/next.config.js +++ b/apps/dashboard/next.config.js @@ -3,6 +3,7 @@ const nextConfig = { experimental: { serverActions: true, outputFileTracingRoot: require("path").join(__dirname, "../../"), + instrumentationHook: true, }, output: "standalone", }