We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f5a58 commit f32cd36Copy full SHA for f32cd36
packages/nextjs/src/performance/client.ts
@@ -8,9 +8,9 @@ const global = getGlobalObject<Window>();
8
9
type StartTransactionCb = (context: TransactionContext) => Transaction | undefined;
10
11
-const DEFAULT_TAGS = Object.freeze({
+const DEFAULT_TAGS = {
12
'routing.instrumentation': 'next-router',
13
-});
+} as const;
14
15
let activeTransaction: Transaction | undefined = undefined;
16
let prevTransactionName: string | undefined = undefined;
0 commit comments