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", }