From 353d34403e92e0f1c30191da68b99a2193d409a0 Mon Sep 17 00:00:00 2001 From: Rajnish Dargan Date: Tue, 10 Dec 2024 18:54:23 +0530 Subject: [PATCH] Issue #PS-2733: feat - Telemetry Service Integration --- next.config.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 0555014..39fc17a 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -79,6 +79,14 @@ const nextConfig = { source: "/action/v1/telemetry", destination: `${process.env.NEXT_PUBLIC_TELEMETRY_URL}/v1/telemetry`, }, + { + source: "/action/data/v3/telemetry", + destination: `${process.env.NEXT_PUBLIC_TELEMETRY_URL}/v1/telemetry`, + }, + { + source: "/data/v3/telemetry", + destination: `${process.env.NEXT_PUBLIC_TELEMETRY_URL}/v1/telemetry`, + }, { source: "/action/content/:path*", // Match other /action/asset routes destination: `${process.env.WORKSPACE_BASE_URL}/api/proxy?path=/action/content/:path*`, // Forward other /action/asset requests to proxy.js