You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/nuxt/src/common/types.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -110,12 +110,12 @@ export type SentryNuxtModuleOptions = {
110
110
* server entry file will disable Sentry on the server-side. When you set this option to `false`, make sure
111
111
* to add the Sentry server config with the node `--import` CLI flag to enable Sentry on the server-side.
112
112
*
113
-
* **DO NOT** add the node CLI flag `--import` in your node start script, when `dynamicImportWrapping` is set to `true` (default).
113
+
* **DO NOT** add the node CLI flag `--import` in your node start script, when `dynamicImportForServerEntry` is set to `true` (default).
114
114
* This would initialize Sentry twice on the server-side and this leads to unexpected issues.
115
115
*
116
116
* @default true
117
117
*/
118
-
dynamicImportWrapping?: boolean;
118
+
dynamicImportForServerEntry?: boolean;
119
119
120
120
/**
121
121
* Options to be passed directly to the Sentry Rollup Plugin (`@sentry/rollup-plugin`) and Sentry Vite Plugin (`@sentry/vite-plugin`) that ship with the Sentry Nuxt SDK.
0 commit comments