We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ee38b commit 9867cefCopy full SHA for 9867cef
src/bootstrap.ts
@@ -111,7 +111,7 @@ export async function bootstrap<
111
| undefined = undefined;
112
if (customizer) {
113
// Customize OTEL with a dynamic import based on the codePath (so put it in src, generally)
114
- otelCustomizer = (await import(`${codepath}/${customizer}`)).NodeSDKConfiguration;
+ otelCustomizer = (await import(`./${codepath}/${customizer}`)).NodeSDKConfiguration;
115
if (typeof otelCustomizer === 'object') {
116
otelCustomizer = (v) => ({ ...v, ...(otelCustomizer as Partial<NodeSDKConfiguration>) });
117
}
0 commit comments