Skip to content

Commit 5bb1f9d

Browse files
committed
change to experimental_entrypointWrappedFunctions
1 parent 878d13b commit 5bb1f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/platforms/javascript/guides/nuxt/install/dynamic-import.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ You can also check out the guide for using the <PlatformLink to="/install/cli-im
7575
Sentry automatically detects serverless handler functions in the build output and re-exports them from the server entry file.
7676

7777
By default, Sentry re-exports functions named `handler`, `server`, and `default` exports. This will work in most cases and no other action is required.
78-
In case your serverless function has another, custom name you can override this with `entrypointWrappedFunctions`:
78+
In case your serverless function has another, custom name you can override this with `experimental_entrypointWrappedFunctions`:
7979

8080

8181
```javascript {filename: nuxt.config.ts} {7}
@@ -85,7 +85,7 @@ export default defineNuxtConfig({
8585
sentry: {
8686
// Customize detected function names
8787
// Default value: ['default', 'handler', 'server']
88-
entrypointWrappedFunctions: ['customFunctionName']
88+
experimental_entrypointWrappedFunctions: ['customFunctionName']
8989
},
9090
});
9191
```

0 commit comments

Comments
 (0)