From 9c09a1b7317b2609cc791d5b4a7a4f06f7a7b847 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Thu, 16 Apr 2026 16:25:52 +0100 Subject: [PATCH] Add `analytics` config to nx (#33175) * Add `analytics` config to nx There doesn't seem to be any way to stop nx wanting to add this config setting, so I think we just have to add it. * Update nx.json --- nx.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nx.json b/nx.json index 58b3b014cd..050a8c7d94 100644 --- a/nx.json +++ b/nx.json @@ -8,5 +8,6 @@ }, "namedInputs": { "src": ["{projectRoot}/src/**/*"] - } + }, + "analytics": false }