@@ -7,7 +7,7 @@ export async function register() {
77  // Load Node.js-specific instrumentation 
88  if  ( process . env . NEXT_RUNTIME  ===  'nodejs' )  { 
99    console . log ( '[Main Instrumentation] Loading Node.js instrumentation...' ) 
10-     const  nodeInstrumentation  =  await  import ( './instrumentation/node' ) 
10+     const  nodeInstrumentation  =  await  import ( './lib/ instrumentation/node' ) 
1111    if  ( nodeInstrumentation . register )  { 
1212      console . log ( '[Main Instrumentation] Calling Node.js register()...' ) 
1313      await  nodeInstrumentation . register ( ) 
@@ -17,7 +17,7 @@ export async function register() {
1717  // Load Edge Runtime-specific instrumentation 
1818  if  ( process . env . NEXT_RUNTIME  ===  'edge' )  { 
1919    console . log ( '[Main Instrumentation] Loading Edge Runtime instrumentation...' ) 
20-     const  edgeInstrumentation  =  await  import ( './instrumentation/edge' ) 
20+     const  edgeInstrumentation  =  await  import ( './lib/ instrumentation/edge' ) 
2121    if  ( edgeInstrumentation . register )  { 
2222      console . log ( '[Main Instrumentation] Calling Edge Runtime register()...' ) 
2323      await  edgeInstrumentation . register ( ) 
@@ -27,6 +27,6 @@ export async function register() {
2727  // Load client instrumentation if we're on the client 
2828  if  ( typeof  window  !==  'undefined' )  { 
2929    console . log ( '[Main Instrumentation] Loading client instrumentation...' ) 
30-     await  import ( './instrumentation/client' ) 
30+     await  import ( './lib/ instrumentation/client' ) 
3131  } 
3232} 
0 commit comments