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 c70f28e commit f0ee38bCopy full SHA for f0ee38b
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