@sentry/nuxt 10.53.1 → 10.55.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/build/cjs/client/piniaIntegration.js +7 -19
  2. package/build/cjs/client/piniaIntegration.js.map +1 -1
  3. package/build/cjs/client/sdk.js +2 -9
  4. package/build/cjs/client/sdk.js.map +1 -1
  5. package/build/cjs/client/vueIntegration.js +3 -10
  6. package/build/cjs/client/vueIntegration.js.map +1 -1
  7. package/build/cjs/common/debug-build.js +0 -5
  8. package/build/cjs/common/debug-build.js.map +1 -1
  9. package/build/cjs/module.js +52 -107
  10. package/build/cjs/module.js.map +1 -1
  11. package/build/cjs/server/sdk.js +20 -60
  12. package/build/cjs/server/sdk.js.map +1 -1
  13. package/build/cjs/vendor/server-template.js +0 -6
  14. package/build/cjs/vendor/server-template.js.map +1 -1
  15. package/build/cjs/vite/addServerConfig.js +45 -144
  16. package/build/cjs/vite/addServerConfig.js.map +1 -1
  17. package/build/cjs/vite/databaseConfig.js +10 -32
  18. package/build/cjs/vite/databaseConfig.js.map +1 -1
  19. package/build/cjs/vite/middlewareConfig.js +11 -46
  20. package/build/cjs/vite/middlewareConfig.js.map +1 -1
  21. package/build/cjs/vite/sentryVitePlugin.js +7 -24
  22. package/build/cjs/vite/sentryVitePlugin.js.map +1 -1
  23. package/build/cjs/vite/sourceMaps.js +89 -248
  24. package/build/cjs/vite/sourceMaps.js.map +1 -1
  25. package/build/cjs/vite/storageConfig.js +4 -10
  26. package/build/cjs/vite/storageConfig.js.map +1 -1
  27. package/build/cjs/vite/utils.js +51 -143
  28. package/build/cjs/vite/utils.js.map +1 -1
  29. package/build/esm/client/piniaIntegration.js +7 -19
  30. package/build/esm/client/piniaIntegration.js.map +1 -1
  31. package/build/esm/client/sdk.js +2 -9
  32. package/build/esm/client/sdk.js.map +1 -1
  33. package/build/esm/client/vueIntegration.js +3 -10
  34. package/build/esm/client/vueIntegration.js.map +1 -1
  35. package/build/esm/common/debug-build.js +0 -5
  36. package/build/esm/common/debug-build.js.map +1 -1
  37. package/build/esm/module.js +52 -107
  38. package/build/esm/module.js.map +1 -1
  39. package/build/esm/package.json +1 -1
  40. package/build/esm/server/sdk.js +20 -60
  41. package/build/esm/server/sdk.js.map +1 -1
  42. package/build/esm/vendor/server-template.js +0 -6
  43. package/build/esm/vendor/server-template.js.map +1 -1
  44. package/build/esm/vite/addServerConfig.js +45 -144
  45. package/build/esm/vite/addServerConfig.js.map +1 -1
  46. package/build/esm/vite/databaseConfig.js +10 -32
  47. package/build/esm/vite/databaseConfig.js.map +1 -1
  48. package/build/esm/vite/middlewareConfig.js +11 -46
  49. package/build/esm/vite/middlewareConfig.js.map +1 -1
  50. package/build/esm/vite/sentryVitePlugin.js +7 -24
  51. package/build/esm/vite/sentryVitePlugin.js.map +1 -1
  52. package/build/esm/vite/sourceMaps.js +89 -248
  53. package/build/esm/vite/sourceMaps.js.map +1 -1
  54. package/build/esm/vite/storageConfig.js +4 -10
  55. package/build/esm/vite/storageConfig.js.map +1 -1
  56. package/build/esm/vite/utils.js +51 -143
  57. package/build/esm/vite/utils.js.map +1 -1
  58. package/build/module/module.d.mts +17 -0
  59. package/build/module/module.d.ts +17 -0
  60. package/build/module/module.json +1 -1
  61. package/build/module/module.mjs +6 -6
  62. package/build/types/common/types.d.ts +17 -0
  63. package/build/types/common/types.d.ts.map +1 -1
  64. package/build/types/vite/utils.d.ts +2 -1
  65. package/build/types/vite/utils.d.ts.map +1 -1
  66. package/package.json +8 -8
@@ -4,166 +4,84 @@ const rollupPlugin = require('@sentry/rollup-plugin');
4
4
  const vitePlugin = require('@sentry/vite-plugin');
5
5
  const sentryVitePlugin = require('./sentryVitePlugin.js');
6
6
 
7
- /**
8
- * Whether the user enabled (true, 'hidden', 'inline') or disabled (false) source maps
9
- */
10
-
11
- /**
12
- * Setup source maps for Sentry inside the Nuxt module during build time (in Vite for Nuxt and Rollup for Nitro).
13
- */
14
- function setupSourceMaps(
15
- moduleOptions,
16
- nuxt,
17
- addVitePlugin,
18
- ) {
19
- // TODO(v11): remove deprecated options (also from SentryNuxtModuleOptions type)
20
-
7
+ function setupSourceMaps(moduleOptions, nuxt, addVitePlugin) {
21
8
  const isDebug = moduleOptions.debug;
22
-
23
- // eslint-disable-next-line deprecation/deprecation
24
9
  const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};
25
-
26
- const sourceMapsEnabled =
27
- moduleOptions.sourcemaps?.disable === true
28
- ? false
29
- : moduleOptions.sourcemaps?.disable === false
30
- ? true
31
- : // eslint-disable-next-line deprecation/deprecation
32
- (sourceMapsUploadOptions.enabled ?? true);
33
-
34
- // In case we overwrite the source map settings, we default to deleting the files
10
+ const sourceMapsEnabled = moduleOptions.sourcemaps?.disable === true ? false : moduleOptions.sourcemaps?.disable === false ? true : (
11
+ // eslint-disable-next-line deprecation/deprecation
12
+ sourceMapsUploadOptions.enabled ?? true
13
+ );
35
14
  const shouldDeleteFilesFallback = { client: true, server: true };
36
-
37
- nuxt.hook('modules:done', () => {
15
+ nuxt.hook("modules:done", () => {
38
16
  if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {
39
- // Changing this setting will propagate:
40
- // - for client to viteConfig.build.sourceMap
41
- // - for server to viteConfig.build.sourceMap and nitro.sourceMap
42
- // On server, nitro.rollupConfig.output.sourcemap remains unaffected from this change.
43
-
44
- // ONLY THIS nuxt.sourcemap.(server/client) setting is the one Sentry will overwrite with 'hidden', if needed.
45
17
  const previousSourceMapSettings = changeNuxtSourceMapSettings(nuxt, moduleOptions);
46
-
47
- // Mutate in place so the Vite plugin (which captured this object at registration time) sees the updated values
48
- shouldDeleteFilesFallback.client = previousSourceMapSettings.client === 'unset';
49
- shouldDeleteFilesFallback.server = previousSourceMapSettings.server === 'unset';
50
-
18
+ shouldDeleteFilesFallback.client = previousSourceMapSettings.client === "unset";
19
+ shouldDeleteFilesFallback.server = previousSourceMapSettings.server === "unset";
51
20
  if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {
52
- const enabledDeleteFallbacks =
53
- shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server
54
- ? 'client-side and server-side'
55
- : shouldDeleteFilesFallback.server
56
- ? 'server-side'
57
- : 'client-side';
58
-
59
- if (
60
- !moduleOptions.sourcemaps?.filesToDeleteAfterUpload &&
61
- // eslint-disable-next-line deprecation/deprecation
62
- !sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload
63
- ) {
64
- // eslint-disable-next-line no-console
21
+ const enabledDeleteFallbacks = shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server ? "client-side and server-side" : shouldDeleteFilesFallback.server ? "server-side" : "client-side";
22
+ if (!moduleOptions.sourcemaps?.filesToDeleteAfterUpload && // eslint-disable-next-line deprecation/deprecation
23
+ !sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload) {
65
24
  console.log(
66
- `[Sentry] We enabled \`'hidden'\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`,
25
+ `[Sentry] We enabled \`'hidden'\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`
67
26
  );
68
27
  } else {
69
- // eslint-disable-next-line no-console
70
28
  console.log(
71
- `[Sentry] We enabled \`'hidden'\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \`sourcemaps.filesToDeleteAfterUpload\` configuration. To use automatic deletion instead, leave \`filesToDeleteAfterUpload\` empty.`,
29
+ `[Sentry] We enabled \`'hidden'\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \`sourcemaps.filesToDeleteAfterUpload\` configuration. To use automatic deletion instead, leave \`filesToDeleteAfterUpload\` empty.`
72
30
  );
73
31
  }
74
32
  }
75
33
  }
76
34
  });
77
-
78
35
  if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {
79
36
  addVitePlugin(
80
37
  [
81
38
  sentryVitePlugin.validateSourceMapsOptionsPlugin({ nuxt, moduleOptions, sourceMapsEnabled }),
82
39
  // Vite plugin is added on the client and server side (plugin runs for both builds)
83
- ...vitePlugin.sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),
40
+ ...vitePlugin.sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback))
84
41
  ],
85
- { dev: false, build: true }, // Only add source map plugin during build
42
+ { dev: false, build: true }
43
+ // Only add source map plugin during build
86
44
  );
87
45
  }
88
-
89
- nuxt.hook('nitro:config', (nitroConfig) => {
46
+ nuxt.hook("nitro:config", (nitroConfig) => {
90
47
  if (sourceMapsEnabled && !nitroConfig.dev && !nuxt.options?._prepare) {
91
48
  if (!nitroConfig.rollupConfig) {
92
49
  nitroConfig.rollupConfig = {};
93
50
  }
94
-
95
- if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {
51
+ if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === void 0) {
96
52
  nitroConfig.rollupConfig.plugins = [];
97
53
  } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {
98
- // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin
99
54
  nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];
100
55
  }
101
-
102
56
  validateNitroSourceMapSettings(nuxt, nitroConfig, moduleOptions);
103
-
104
57
  if (isDebug) {
105
- // eslint-disable-next-line no-console
106
- console.log('[Sentry] Adding Sentry Rollup plugin to the server runtime.');
58
+ console.log("[Sentry] Adding Sentry Rollup plugin to the server runtime.");
107
59
  }
108
-
109
- // Add Sentry plugin
110
- // Runs only on server-side (Nitro)
111
60
  nitroConfig.rollupConfig.plugins.push(
112
- rollupPlugin.sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),
61
+ rollupPlugin.sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback))
113
62
  );
114
63
  }
115
64
  });
116
65
  }
117
-
118
- /**
119
- * Normalizes the beginning of a path from e.g. ../../../ to ./
120
- */
121
66
  function normalizePath(path) {
122
- return path.replace(/^(\.\.\/)+/, './');
67
+ return path.replace(/^(\.\.\/)+/, "./");
123
68
  }
124
-
125
- /**
126
- * Generates source maps upload options for the Sentry Vite and Rollup plugin.
127
- *
128
- * Only exported for Testing purposes.
129
- */
130
- // todo(v11): This "eslint-disable" can be removed again once we remove deprecated options.
131
- // eslint-disable-next-line complexity
132
- function getPluginOptions(
133
- moduleOptions,
134
- shouldDeleteFilesFallback,
135
- ) {
136
- // eslint-disable-next-line deprecation/deprecation
69
+ function getPluginOptions(moduleOptions, shouldDeleteFilesFallback) {
137
70
  const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};
138
-
139
71
  const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;
140
72
  const fallbackFilesToDelete = [
141
- ...(shouldDeleteFilesFallback?.client ? ['.*/**/public/**/*.map'] : []),
142
- ...(shouldDeleteFilesFallback?.server
143
- ? ['.*/**/server/**/*.map', '.*/**/output/**/*.map', '.*/**/function/**/*.map']
144
- : []),
73
+ ...shouldDeleteFilesFallback?.client ? [".*/**/public/**/*.map"] : [],
74
+ ...shouldDeleteFilesFallback?.server ? [".*/**/server/**/*.map", ".*/**/output/**/*.map", ".*/**/function/**/*.map"] : []
145
75
  ];
146
-
147
- // Check for filesToDeleteAfterUpload in new location first, then deprecated location
148
76
  const sourcemapsOptions = moduleOptions.sourcemaps || {};
149
- // eslint-disable-next-line deprecation/deprecation
150
77
  const deprecatedSourcemapsOptions = sourceMapsUploadOptions.sourcemaps || {};
151
-
152
- const filesToDeleteAfterUpload =
153
- sourcemapsOptions.filesToDeleteAfterUpload ??
154
- // eslint-disable-next-line deprecation/deprecation
155
- deprecatedSourcemapsOptions.filesToDeleteAfterUpload;
156
-
157
- if (typeof filesToDeleteAfterUpload === 'undefined' && shouldDeleteFilesAfterUpload && moduleOptions.debug) {
158
- // eslint-disable-next-line no-console
78
+ const filesToDeleteAfterUpload = sourcemapsOptions.filesToDeleteAfterUpload ?? // eslint-disable-next-line deprecation/deprecation
79
+ deprecatedSourcemapsOptions.filesToDeleteAfterUpload;
80
+ if (typeof filesToDeleteAfterUpload === "undefined" && shouldDeleteFilesAfterUpload && moduleOptions.debug) {
159
81
  console.log(
160
- `[Sentry] Setting \`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete
161
- // Logging it as strings in the array
162
- .map(path => `"${path}"`)
163
- .join(', ')}]\` to delete generated source maps after they were uploaded to Sentry.`,
82
+ `[Sentry] Setting \`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete.map((path) => `"${path}"`).join(", ")}]\` to delete generated source maps after they were uploaded to Sentry.`
164
83
  );
165
84
  }
166
-
167
85
  return {
168
86
  applicationKey: moduleOptions.applicationKey,
169
87
  // eslint-disable-next-line deprecation/deprecation
@@ -182,229 +100,152 @@ function getPluginOptions(
182
100
  silent: moduleOptions.silent ?? sourceMapsUploadOptions.silent ?? false,
183
101
  // eslint-disable-next-line deprecation/deprecation
184
102
  errorHandler: moduleOptions.errorHandler ?? sourceMapsUploadOptions.errorHandler,
185
- bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations, // todo: test if this can be overridden by the user
103
+ bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations,
104
+ // todo: test if this can be overridden by the user
186
105
  release: {
187
106
  // eslint-disable-next-line deprecation/deprecation
188
107
  name: moduleOptions.release?.name ?? sourceMapsUploadOptions.release?.name,
189
108
  // Support all release options from BuildTimeOptionsBase
190
109
  ...moduleOptions.release,
191
- ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release,
110
+ ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release
192
111
  },
193
112
  _metaOptions: {
194
113
  telemetry: {
195
- metaFramework: 'nuxt',
196
- },
114
+ metaFramework: "nuxt"
115
+ }
197
116
  },
198
117
  ...moduleOptions?.unstable_sentryBundlerPluginOptions,
199
-
200
118
  sourcemaps: {
201
119
  disable: moduleOptions.sourcemaps?.disable,
202
120
  // The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')
203
121
  // We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).
204
122
  // If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],
205
123
  // eslint-disable-next-line deprecation/deprecation
206
- assets: sourcemapsOptions.assets ?? deprecatedSourcemapsOptions.assets ?? undefined,
124
+ assets: sourcemapsOptions.assets ?? deprecatedSourcemapsOptions.assets ?? void 0,
207
125
  // eslint-disable-next-line deprecation/deprecation
208
- ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? undefined,
209
- filesToDeleteAfterUpload: filesToDeleteAfterUpload
210
- ? filesToDeleteAfterUpload
211
- : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client
212
- ? fallbackFilesToDelete
213
- : undefined,
126
+ ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? void 0,
127
+ filesToDeleteAfterUpload: filesToDeleteAfterUpload ? filesToDeleteAfterUpload : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client ? fallbackFilesToDelete : void 0,
214
128
  rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,
215
- ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps,
216
- },
129
+ ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps
130
+ }
217
131
  };
218
132
  }
219
-
220
- /* There are multiple ways to set up source maps (https://github.com/getsentry/sentry-javascript/issues/13993 and https://github.com/getsentry/sentry-javascript/pull/15859)
221
- 1. User explicitly disabled source maps
222
- - keep this setting (emit a warning that errors won't be unminified in Sentry)
223
- - We will not upload anything
224
- 2. users enabled source map generation (true, hidden, inline).
225
- - keep this setting (don't do anything - like deletion - besides uploading)
226
- 3. users did not set source maps generation
227
- - we enable 'hidden' source maps generation
228
- - configure `filesToDeleteAfterUpload` to delete all .map files (we emit a log about this)
229
-
230
- Users only have to explicitly enable client source maps. Sentry only overwrites the base Nuxt source map settings as they propagate.
231
- */
232
-
233
- /** only exported for tests */
234
- function extractNuxtSourceMapSetting(
235
- nuxt,
236
- runtime,
237
- ) {
133
+ function extractNuxtSourceMapSetting(nuxt, runtime) {
238
134
  if (!runtime) {
239
- return undefined;
135
+ return void 0;
240
136
  } else {
241
- return typeof nuxt.options?.sourcemap === 'boolean' || typeof nuxt.options?.sourcemap === 'string'
242
- ? nuxt.options.sourcemap
243
- : nuxt.options?.sourcemap?.[runtime];
137
+ return typeof nuxt.options?.sourcemap === "boolean" || typeof nuxt.options?.sourcemap === "string" ? nuxt.options.sourcemap : nuxt.options?.sourcemap?.[runtime];
244
138
  }
245
139
  }
246
-
247
- /** only exported for testing */
248
- function changeNuxtSourceMapSettings(
249
- nuxt,
250
- sentryModuleOptions,
251
- ) {
252
- nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: undefined, client: undefined };
253
-
140
+ function changeNuxtSourceMapSettings(nuxt, sentryModuleOptions) {
141
+ nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: void 0, client: void 0 };
254
142
  let previousUserSourceMapSetting = {
255
- client: undefined,
256
- server: undefined,
143
+ client: void 0,
144
+ server: void 0
257
145
  };
258
-
259
146
  const nuxtSourceMap = nuxt.options.sourcemap;
260
147
  const isDebug = sentryModuleOptions.debug;
261
-
262
- if (typeof nuxtSourceMap === 'string' || typeof nuxtSourceMap === 'boolean' || typeof nuxtSourceMap === 'undefined') {
148
+ if (typeof nuxtSourceMap === "string" || typeof nuxtSourceMap === "boolean" || typeof nuxtSourceMap === "undefined") {
263
149
  switch (nuxtSourceMap) {
264
150
  case false:
265
- warnExplicitlyDisabledSourceMap('sourcemap', isDebug);
266
- previousUserSourceMapSetting = { client: 'disabled', server: 'disabled' };
151
+ warnExplicitlyDisabledSourceMap("sourcemap", isDebug);
152
+ previousUserSourceMapSetting = { client: "disabled", server: "disabled" };
267
153
  break;
268
-
269
- case 'hidden':
154
+ case "hidden":
270
155
  case true:
271
- logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap', (nuxtSourceMap ).toString());
272
- previousUserSourceMapSetting = { client: 'enabled', server: 'enabled' };
156
+ logKeepEnabledSourceMapSetting(sentryModuleOptions, "sourcemap", nuxtSourceMap.toString());
157
+ previousUserSourceMapSetting = { client: "enabled", server: "enabled" };
273
158
  break;
274
- case undefined:
275
- nuxt.options.sourcemap = { server: 'hidden', client: 'hidden' };
276
- isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');
277
- isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');
278
- previousUserSourceMapSetting = { client: 'unset', server: 'unset' };
159
+ case void 0:
160
+ nuxt.options.sourcemap = { server: "hidden", client: "hidden" };
161
+ isDebug && logSentryEnablesSourceMap("sourcemap.client", "hidden");
162
+ isDebug && logSentryEnablesSourceMap("sourcemap.server", "hidden");
163
+ previousUserSourceMapSetting = { client: "unset", server: "unset" };
279
164
  break;
280
165
  }
281
166
  } else {
282
167
  if (nuxtSourceMap.client === false) {
283
- warnExplicitlyDisabledSourceMap('sourcemap.client', isDebug);
284
- previousUserSourceMapSetting.client = 'disabled';
285
- } else if (['hidden', true].includes(nuxtSourceMap.client)) {
286
- logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.client', nuxtSourceMap.client.toString());
287
- previousUserSourceMapSetting.client = 'enabled';
168
+ warnExplicitlyDisabledSourceMap("sourcemap.client", isDebug);
169
+ previousUserSourceMapSetting.client = "disabled";
170
+ } else if (["hidden", true].includes(nuxtSourceMap.client)) {
171
+ logKeepEnabledSourceMapSetting(sentryModuleOptions, "sourcemap.client", nuxtSourceMap.client.toString());
172
+ previousUserSourceMapSetting.client = "enabled";
288
173
  } else {
289
- nuxt.options.sourcemap.client = 'hidden';
290
- isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');
291
- previousUserSourceMapSetting.client = 'unset';
174
+ nuxt.options.sourcemap.client = "hidden";
175
+ isDebug && logSentryEnablesSourceMap("sourcemap.client", "hidden");
176
+ previousUserSourceMapSetting.client = "unset";
292
177
  }
293
-
294
178
  if (nuxtSourceMap.server === false) {
295
- warnExplicitlyDisabledSourceMap('sourcemap.server', isDebug);
296
- previousUserSourceMapSetting.server = 'disabled';
297
- } else if (['hidden', true].includes(nuxtSourceMap.server)) {
298
- logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.server', nuxtSourceMap.server.toString());
299
- previousUserSourceMapSetting.server = 'enabled';
179
+ warnExplicitlyDisabledSourceMap("sourcemap.server", isDebug);
180
+ previousUserSourceMapSetting.server = "disabled";
181
+ } else if (["hidden", true].includes(nuxtSourceMap.server)) {
182
+ logKeepEnabledSourceMapSetting(sentryModuleOptions, "sourcemap.server", nuxtSourceMap.server.toString());
183
+ previousUserSourceMapSetting.server = "enabled";
300
184
  } else {
301
- nuxt.options.sourcemap.server = 'hidden';
302
- isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');
303
- previousUserSourceMapSetting.server = 'unset';
185
+ nuxt.options.sourcemap.server = "hidden";
186
+ isDebug && logSentryEnablesSourceMap("sourcemap.server", "hidden");
187
+ previousUserSourceMapSetting.server = "unset";
304
188
  }
305
189
  }
306
-
307
190
  return previousUserSourceMapSetting;
308
191
  }
309
-
310
- /** Logs warnings about potentially conflicting source map settings.
311
- * Configures `sourcemapExcludeSources` in Nitro to make source maps usable in Sentry.
312
- *
313
- * only exported for testing
314
- */
315
- function validateNitroSourceMapSettings(
316
- nuxt,
317
- nitroConfig,
318
- sentryModuleOptions,
319
- ) {
192
+ function validateNitroSourceMapSettings(nuxt, nitroConfig, sentryModuleOptions) {
320
193
  const isDebug = sentryModuleOptions.debug;
321
- const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, 'server');
322
-
323
- // NITRO CONFIG ---
324
-
194
+ const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, "server");
325
195
  validateDifferentSourceMapSettings({
326
- nuxtSettingKey: 'sourcemap.server',
196
+ nuxtSettingKey: "sourcemap.server",
327
197
  nuxtSettingValue: nuxtSourceMap,
328
- otherSettingKey: 'nitro.sourceMap',
329
- otherSettingValue: nitroConfig.sourceMap,
198
+ otherSettingKey: "nitro.sourceMap",
199
+ otherSettingValue: nitroConfig.sourceMap
330
200
  });
331
-
332
- // ROLLUP CONFIG ---
333
-
334
201
  nitroConfig.rollupConfig = nitroConfig.rollupConfig || {};
335
- nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: undefined };
202
+ nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: void 0 };
336
203
  const nitroRollupSourceMap = nitroConfig.rollupConfig.output.sourcemap;
337
-
338
- // We don't override nitro.rollupConfig.output.sourcemap (undefined by default, but overrides all other server-side source map settings)
339
- if (typeof nitroRollupSourceMap !== 'undefined' && ['hidden', 'inline', true, false].includes(nitroRollupSourceMap)) {
340
- const settingKey = 'nitro.rollupConfig.output.sourcemap';
341
-
204
+ if (typeof nitroRollupSourceMap !== "undefined" && ["hidden", "inline", true, false].includes(nitroRollupSourceMap)) {
205
+ const settingKey = "nitro.rollupConfig.output.sourcemap";
342
206
  validateDifferentSourceMapSettings({
343
- nuxtSettingKey: 'sourcemap.server',
207
+ nuxtSettingKey: "sourcemap.server",
344
208
  nuxtSettingValue: nuxtSourceMap,
345
209
  otherSettingKey: settingKey,
346
- otherSettingValue: nitroRollupSourceMap,
210
+ otherSettingValue: nitroRollupSourceMap
347
211
  });
348
212
  }
349
-
350
213
  nitroConfig.rollupConfig.output.sourcemapExcludeSources = false;
351
214
  if (isDebug) {
352
- // eslint-disable-next-line no-console
353
215
  console.log(
354
- '[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry.',
216
+ "[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry."
355
217
  );
356
218
  }
357
219
  }
358
-
359
- /**
360
- * Validates that source map settings are consistent between Nuxt and Vite/Nitro configurations.
361
- * Logs a warning if conflicting settings are detected.
362
- *
363
- * @internal Only exported for testing.
364
- */
365
220
  function validateDifferentSourceMapSettings({
366
221
  nuxtSettingKey,
367
222
  nuxtSettingValue,
368
223
  otherSettingKey,
369
- otherSettingValue,
370
- }
371
-
372
- ) {
224
+ otherSettingValue
225
+ }) {
373
226
  if (nuxtSettingValue !== otherSettingValue) {
374
- // eslint-disable-next-line no-console
375
227
  console.warn(
376
- `[Sentry] Source map generation settings are conflicting. Sentry uses \`${nuxtSettingKey}: ${nuxtSettingValue}\`. However, a conflicting setting was discovered (\`${otherSettingKey}: ${otherSettingValue}\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`,
228
+ `[Sentry] Source map generation settings are conflicting. Sentry uses \`${nuxtSettingKey}: ${nuxtSettingValue}\`. However, a conflicting setting was discovered (\`${otherSettingKey}: ${otherSettingValue}\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`
377
229
  );
378
230
  }
379
231
  }
380
-
381
- function logKeepEnabledSourceMapSetting(
382
- sentryNuxtModuleOptions,
383
- settingKey,
384
- settingValue,
385
- ) {
232
+ function logKeepEnabledSourceMapSetting(sentryNuxtModuleOptions, settingKey, settingValue) {
386
233
  if (sentryNuxtModuleOptions.debug) {
387
- // eslint-disable-next-line no-console
388
234
  console.log(
389
- `[Sentry] \`${settingKey}\` is enabled with \`${settingValue}\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`,
235
+ `[Sentry] \`${settingKey}\` is enabled with \`${settingValue}\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`
390
236
  );
391
237
  }
392
238
  }
393
-
394
239
  function warnExplicitlyDisabledSourceMap(settingKey, isDebug) {
395
240
  if (isDebug) {
396
- // eslint-disable-next-line no-console
397
241
  console.warn(
398
- `[Sentry] Source map generation is currently disabled in your Vite configuration (\`${settingKey}: false \`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \`${settingKey}\` (e.g. by setting them to \`hidden\`).`,
242
+ `[Sentry] Source map generation is currently disabled in your Vite configuration (\`${settingKey}: false \`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \`${settingKey}\` (e.g. by setting them to \`hidden\`).`
399
243
  );
400
244
  } else {
401
- // eslint-disable-next-line no-console
402
245
  console.warn(`[Sentry] Source map generation (\`${settingKey}\`) is disabled in your Vite configuration.`);
403
246
  }
404
247
  }
405
-
406
248
  function logSentryEnablesSourceMap(settingKey, settingValue) {
407
- // eslint-disable-next-line no-console
408
249
  console.log(`[Sentry] Enabled source map generation in the build options with \`${settingKey}: ${settingValue}\`.`);
409
250
  }
410
251
 
@@ -1 +1 @@
1
- {"version":3,"file":"sourceMaps.js","sources":["../../../src/vite/sourceMaps.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { sentryRollupPlugin, type SentryRollupPluginOptions } from '@sentry/rollup-plugin';\nimport { sentryVitePlugin, type SentryVitePluginOptions } from '@sentry/vite-plugin';\nimport type { NitroConfig } from 'nitropack';\nimport type { Plugin } from 'vite';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport { validateSourceMapsOptionsPlugin } from './sentryVitePlugin';\n\n/**\n * Whether the user enabled (true, 'hidden', 'inline') or disabled (false) source maps\n */\nexport type UserSourceMapSetting = 'enabled' | 'disabled' | 'unset' | undefined;\n\n/** A valid source map setting */\nexport type SourceMapSetting = boolean | 'hidden' | 'inline';\n\n/**\n * Setup source maps for Sentry inside the Nuxt module during build time (in Vite for Nuxt and Rollup for Nitro).\n */\nexport function setupSourceMaps(\n moduleOptions: SentryNuxtModuleOptions,\n nuxt: Nuxt,\n addVitePlugin: (plugin: Plugin[], options?: { dev?: boolean; build?: boolean }) => void,\n): void {\n // TODO(v11): remove deprecated options (also from SentryNuxtModuleOptions type)\n\n const isDebug = moduleOptions.debug;\n\n // eslint-disable-next-line deprecation/deprecation\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const sourceMapsEnabled =\n moduleOptions.sourcemaps?.disable === true\n ? false\n : moduleOptions.sourcemaps?.disable === false\n ? true\n : // eslint-disable-next-line deprecation/deprecation\n (sourceMapsUploadOptions.enabled ?? true);\n\n // In case we overwrite the source map settings, we default to deleting the files\n const shouldDeleteFilesFallback = { client: true, server: true };\n\n nuxt.hook('modules:done', () => {\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n // Changing this setting will propagate:\n // - for client to viteConfig.build.sourceMap\n // - for server to viteConfig.build.sourceMap and nitro.sourceMap\n // On server, nitro.rollupConfig.output.sourcemap remains unaffected from this change.\n\n // ONLY THIS nuxt.sourcemap.(server/client) setting is the one Sentry will overwrite with 'hidden', if needed.\n const previousSourceMapSettings = changeNuxtSourceMapSettings(nuxt, moduleOptions);\n\n // Mutate in place so the Vite plugin (which captured this object at registration time) sees the updated values\n shouldDeleteFilesFallback.client = previousSourceMapSettings.client === 'unset';\n shouldDeleteFilesFallback.server = previousSourceMapSettings.server === 'unset';\n\n if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {\n const enabledDeleteFallbacks =\n shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server\n ? 'client-side and server-side'\n : shouldDeleteFilesFallback.server\n ? 'server-side'\n : 'client-side';\n\n if (\n !moduleOptions.sourcemaps?.filesToDeleteAfterUpload &&\n // eslint-disable-next-line deprecation/deprecation\n !sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload\n ) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \\`sourcemaps.filesToDeleteAfterUpload\\` configuration. To use automatic deletion instead, leave \\`filesToDeleteAfterUpload\\` empty.`,\n );\n }\n }\n }\n });\n\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n addVitePlugin(\n [\n validateSourceMapsOptionsPlugin({ nuxt, moduleOptions, sourceMapsEnabled }),\n // Vite plugin is added on the client and server side (plugin runs for both builds)\n ...sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n ],\n { dev: false, build: true }, // Only add source map plugin during build\n );\n }\n\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (sourceMapsEnabled && !nitroConfig.dev && !nuxt.options?._prepare) {\n if (!nitroConfig.rollupConfig) {\n nitroConfig.rollupConfig = {};\n }\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n validateNitroSourceMapSettings(nuxt, nitroConfig, moduleOptions);\n\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log('[Sentry] Adding Sentry Rollup plugin to the server runtime.');\n }\n\n // Add Sentry plugin\n // Runs only on server-side (Nitro)\n nitroConfig.rollupConfig.plugins.push(\n sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n );\n }\n });\n}\n\n/**\n * Normalizes the beginning of a path from e.g. ../../../ to ./\n */\nfunction normalizePath(path: string): string {\n return path.replace(/^(\\.\\.\\/)+/, './');\n}\n\n/**\n * Generates source maps upload options for the Sentry Vite and Rollup plugin.\n *\n * Only exported for Testing purposes.\n */\n// todo(v11): This \"eslint-disable\" can be removed again once we remove deprecated options.\n// eslint-disable-next-line complexity\nexport function getPluginOptions(\n moduleOptions: SentryNuxtModuleOptions,\n shouldDeleteFilesFallback?: { client: boolean; server: boolean },\n): SentryVitePluginOptions | SentryRollupPluginOptions {\n // eslint-disable-next-line deprecation/deprecation\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;\n const fallbackFilesToDelete = [\n ...(shouldDeleteFilesFallback?.client ? ['.*/**/public/**/*.map'] : []),\n ...(shouldDeleteFilesFallback?.server\n ? ['.*/**/server/**/*.map', '.*/**/output/**/*.map', '.*/**/function/**/*.map']\n : []),\n ];\n\n // Check for filesToDeleteAfterUpload in new location first, then deprecated location\n const sourcemapsOptions = moduleOptions.sourcemaps || {};\n // eslint-disable-next-line deprecation/deprecation\n const deprecatedSourcemapsOptions = sourceMapsUploadOptions.sourcemaps || {};\n\n const filesToDeleteAfterUpload =\n sourcemapsOptions.filesToDeleteAfterUpload ??\n // eslint-disable-next-line deprecation/deprecation\n deprecatedSourcemapsOptions.filesToDeleteAfterUpload;\n\n if (typeof filesToDeleteAfterUpload === 'undefined' && shouldDeleteFilesAfterUpload && moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Setting \\`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete\n // Logging it as strings in the array\n .map(path => `\"${path}\"`)\n .join(', ')}]\\` to delete generated source maps after they were uploaded to Sentry.`,\n );\n }\n\n return {\n applicationKey: moduleOptions.applicationKey,\n // eslint-disable-next-line deprecation/deprecation\n org: moduleOptions.org ?? sourceMapsUploadOptions.org ?? process.env.SENTRY_ORG,\n // eslint-disable-next-line deprecation/deprecation\n project: moduleOptions.project ?? sourceMapsUploadOptions.project ?? process.env.SENTRY_PROJECT,\n // eslint-disable-next-line deprecation/deprecation\n authToken: moduleOptions.authToken ?? sourceMapsUploadOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,\n // eslint-disable-next-line deprecation/deprecation\n telemetry: moduleOptions.telemetry ?? sourceMapsUploadOptions.telemetry ?? true,\n // eslint-disable-next-line deprecation/deprecation\n url: moduleOptions.sentryUrl ?? sourceMapsUploadOptions.url ?? process.env.SENTRY_URL,\n headers: moduleOptions.headers,\n debug: moduleOptions.debug ?? false,\n // eslint-disable-next-line deprecation/deprecation\n silent: moduleOptions.silent ?? sourceMapsUploadOptions.silent ?? false,\n // eslint-disable-next-line deprecation/deprecation\n errorHandler: moduleOptions.errorHandler ?? sourceMapsUploadOptions.errorHandler,\n bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations, // todo: test if this can be overridden by the user\n release: {\n // eslint-disable-next-line deprecation/deprecation\n name: moduleOptions.release?.name ?? sourceMapsUploadOptions.release?.name,\n // Support all release options from BuildTimeOptionsBase\n ...moduleOptions.release,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release,\n },\n _metaOptions: {\n telemetry: {\n metaFramework: 'nuxt',\n },\n },\n ...moduleOptions?.unstable_sentryBundlerPluginOptions,\n\n sourcemaps: {\n disable: moduleOptions.sourcemaps?.disable,\n // The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')\n // We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).\n // If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],\n // eslint-disable-next-line deprecation/deprecation\n assets: sourcemapsOptions.assets ?? deprecatedSourcemapsOptions.assets ?? undefined,\n // eslint-disable-next-line deprecation/deprecation\n ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? undefined,\n filesToDeleteAfterUpload: filesToDeleteAfterUpload\n ? filesToDeleteAfterUpload\n : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client\n ? fallbackFilesToDelete\n : undefined,\n rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps,\n },\n };\n}\n\n/* There are multiple ways to set up source maps (https://github.com/getsentry/sentry-javascript/issues/13993 and https://github.com/getsentry/sentry-javascript/pull/15859)\n 1. User explicitly disabled source maps\n - keep this setting (emit a warning that errors won't be unminified in Sentry)\n - We will not upload anything\n 2. users enabled source map generation (true, hidden, inline).\n - keep this setting (don't do anything - like deletion - besides uploading)\n 3. users did not set source maps generation\n - we enable 'hidden' source maps generation\n - configure `filesToDeleteAfterUpload` to delete all .map files (we emit a log about this)\n\n Users only have to explicitly enable client source maps. Sentry only overwrites the base Nuxt source map settings as they propagate.\n */\n\n/** only exported for tests */\nexport function extractNuxtSourceMapSetting(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting; client?: SourceMapSetting } } },\n runtime: 'client' | 'server' | undefined,\n): SourceMapSetting | undefined {\n if (!runtime) {\n return undefined;\n } else {\n return typeof nuxt.options?.sourcemap === 'boolean' || typeof nuxt.options?.sourcemap === 'string'\n ? nuxt.options.sourcemap\n : nuxt.options?.sourcemap?.[runtime];\n }\n}\n\n/** only exported for testing */\nexport function changeNuxtSourceMapSettings(\n nuxt: Nuxt,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): { client: UserSourceMapSetting; server: UserSourceMapSetting } {\n nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: undefined, client: undefined };\n\n let previousUserSourceMapSetting: { client: UserSourceMapSetting; server: UserSourceMapSetting } = {\n client: undefined,\n server: undefined,\n };\n\n const nuxtSourceMap = nuxt.options.sourcemap;\n const isDebug = sentryModuleOptions.debug;\n\n if (typeof nuxtSourceMap === 'string' || typeof nuxtSourceMap === 'boolean' || typeof nuxtSourceMap === 'undefined') {\n switch (nuxtSourceMap) {\n case false:\n warnExplicitlyDisabledSourceMap('sourcemap', isDebug);\n previousUserSourceMapSetting = { client: 'disabled', server: 'disabled' };\n break;\n\n case 'hidden':\n case true:\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap', (nuxtSourceMap as true).toString());\n previousUserSourceMapSetting = { client: 'enabled', server: 'enabled' };\n break;\n case undefined:\n nuxt.options.sourcemap = { server: 'hidden', client: 'hidden' };\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting = { client: 'unset', server: 'unset' };\n break;\n }\n } else {\n if (nuxtSourceMap.client === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.client', isDebug);\n previousUserSourceMapSetting.client = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.client)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.client', nuxtSourceMap.client.toString());\n previousUserSourceMapSetting.client = 'enabled';\n } else {\n nuxt.options.sourcemap.client = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n previousUserSourceMapSetting.client = 'unset';\n }\n\n if (nuxtSourceMap.server === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.server', isDebug);\n previousUserSourceMapSetting.server = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.server)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.server', nuxtSourceMap.server.toString());\n previousUserSourceMapSetting.server = 'enabled';\n } else {\n nuxt.options.sourcemap.server = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting.server = 'unset';\n }\n }\n\n return previousUserSourceMapSetting;\n}\n\n/** Logs warnings about potentially conflicting source map settings.\n * Configures `sourcemapExcludeSources` in Nitro to make source maps usable in Sentry.\n *\n * only exported for testing\n */\nexport function validateNitroSourceMapSettings(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting } } },\n nitroConfig: NitroConfig,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): void {\n const isDebug = sentryModuleOptions.debug;\n const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, 'server');\n\n // NITRO CONFIG ---\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: 'nitro.sourceMap',\n otherSettingValue: nitroConfig.sourceMap,\n });\n\n // ROLLUP CONFIG ---\n\n nitroConfig.rollupConfig = nitroConfig.rollupConfig || {};\n nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: undefined };\n const nitroRollupSourceMap = nitroConfig.rollupConfig.output.sourcemap;\n\n // We don't override nitro.rollupConfig.output.sourcemap (undefined by default, but overrides all other server-side source map settings)\n if (typeof nitroRollupSourceMap !== 'undefined' && ['hidden', 'inline', true, false].includes(nitroRollupSourceMap)) {\n const settingKey = 'nitro.rollupConfig.output.sourcemap';\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: settingKey,\n otherSettingValue: nitroRollupSourceMap,\n });\n }\n\n nitroConfig.rollupConfig.output.sourcemapExcludeSources = false;\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry.',\n );\n }\n}\n\n/**\n * Validates that source map settings are consistent between Nuxt and Vite/Nitro configurations.\n * Logs a warning if conflicting settings are detected.\n *\n * @internal Only exported for testing.\n */\nexport function validateDifferentSourceMapSettings({\n nuxtSettingKey,\n nuxtSettingValue,\n otherSettingKey,\n otherSettingValue,\n}: {\n nuxtSettingKey: string;\n nuxtSettingValue?: SourceMapSetting;\n otherSettingKey: string;\n otherSettingValue?: SourceMapSetting;\n}): void {\n if (nuxtSettingValue !== otherSettingValue) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation settings are conflicting. Sentry uses \\`${nuxtSettingKey}: ${nuxtSettingValue}\\`. However, a conflicting setting was discovered (\\`${otherSettingKey}: ${otherSettingValue}\\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`,\n );\n }\n}\n\nfunction logKeepEnabledSourceMapSetting(\n sentryNuxtModuleOptions: SentryNuxtModuleOptions,\n settingKey: string,\n settingValue: string,\n): void {\n if (sentryNuxtModuleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] \\`${settingKey}\\` is enabled with \\`${settingValue}\\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`,\n );\n }\n}\n\nfunction warnExplicitlyDisabledSourceMap(settingKey: string, isDebug: boolean | undefined): void {\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation is currently disabled in your Vite configuration (\\`${settingKey}: false \\`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \\`${settingKey}\\` (e.g. by setting them to \\`hidden\\`).`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.warn(`[Sentry] Source map generation (\\`${settingKey}\\`) is disabled in your Vite configuration.`);\n }\n}\n\nfunction logSentryEnablesSourceMap(settingKey: string, settingValue: string): void {\n // eslint-disable-next-line no-console\n console.log(`[Sentry] Enabled source map generation in the build options with \\`${settingKey}: ${settingValue}\\`.`);\n}\n"],"names":["validateSourceMapsOptionsPlugin","sentryVitePlugin","sentryRollupPlugin"],"mappings":"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"}
1
+ {"version":3,"file":"sourceMaps.js","sources":["../../../src/vite/sourceMaps.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { sentryRollupPlugin, type SentryRollupPluginOptions } from '@sentry/rollup-plugin';\nimport { sentryVitePlugin, type SentryVitePluginOptions } from '@sentry/vite-plugin';\nimport type { NitroConfig } from 'nitropack';\nimport type { Plugin } from 'vite';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport { validateSourceMapsOptionsPlugin } from './sentryVitePlugin';\n\n/**\n * Whether the user enabled (true, 'hidden', 'inline') or disabled (false) source maps\n */\nexport type UserSourceMapSetting = 'enabled' | 'disabled' | 'unset' | undefined;\n\n/** A valid source map setting */\nexport type SourceMapSetting = boolean | 'hidden' | 'inline';\n\n/**\n * Setup source maps for Sentry inside the Nuxt module during build time (in Vite for Nuxt and Rollup for Nitro).\n */\nexport function setupSourceMaps(\n moduleOptions: SentryNuxtModuleOptions,\n nuxt: Nuxt,\n addVitePlugin: (plugin: Plugin[], options?: { dev?: boolean; build?: boolean }) => void,\n): void {\n // TODO(v11): remove deprecated options (also from SentryNuxtModuleOptions type)\n\n const isDebug = moduleOptions.debug;\n\n // eslint-disable-next-line deprecation/deprecation\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const sourceMapsEnabled =\n moduleOptions.sourcemaps?.disable === true\n ? false\n : moduleOptions.sourcemaps?.disable === false\n ? true\n : // eslint-disable-next-line deprecation/deprecation\n (sourceMapsUploadOptions.enabled ?? true);\n\n // In case we overwrite the source map settings, we default to deleting the files\n const shouldDeleteFilesFallback = { client: true, server: true };\n\n nuxt.hook('modules:done', () => {\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n // Changing this setting will propagate:\n // - for client to viteConfig.build.sourceMap\n // - for server to viteConfig.build.sourceMap and nitro.sourceMap\n // On server, nitro.rollupConfig.output.sourcemap remains unaffected from this change.\n\n // ONLY THIS nuxt.sourcemap.(server/client) setting is the one Sentry will overwrite with 'hidden', if needed.\n const previousSourceMapSettings = changeNuxtSourceMapSettings(nuxt, moduleOptions);\n\n // Mutate in place so the Vite plugin (which captured this object at registration time) sees the updated values\n shouldDeleteFilesFallback.client = previousSourceMapSettings.client === 'unset';\n shouldDeleteFilesFallback.server = previousSourceMapSettings.server === 'unset';\n\n if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {\n const enabledDeleteFallbacks =\n shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server\n ? 'client-side and server-side'\n : shouldDeleteFilesFallback.server\n ? 'server-side'\n : 'client-side';\n\n if (\n !moduleOptions.sourcemaps?.filesToDeleteAfterUpload &&\n // eslint-disable-next-line deprecation/deprecation\n !sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload\n ) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \\`sourcemaps.filesToDeleteAfterUpload\\` configuration. To use automatic deletion instead, leave \\`filesToDeleteAfterUpload\\` empty.`,\n );\n }\n }\n }\n });\n\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n addVitePlugin(\n [\n validateSourceMapsOptionsPlugin({ nuxt, moduleOptions, sourceMapsEnabled }),\n // Vite plugin is added on the client and server side (plugin runs for both builds)\n ...sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n ],\n { dev: false, build: true }, // Only add source map plugin during build\n );\n }\n\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (sourceMapsEnabled && !nitroConfig.dev && !nuxt.options?._prepare) {\n if (!nitroConfig.rollupConfig) {\n nitroConfig.rollupConfig = {};\n }\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n validateNitroSourceMapSettings(nuxt, nitroConfig, moduleOptions);\n\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log('[Sentry] Adding Sentry Rollup plugin to the server runtime.');\n }\n\n // Add Sentry plugin\n // Runs only on server-side (Nitro)\n nitroConfig.rollupConfig.plugins.push(\n sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n );\n }\n });\n}\n\n/**\n * Normalizes the beginning of a path from e.g. ../../../ to ./\n */\nfunction normalizePath(path: string): string {\n return path.replace(/^(\\.\\.\\/)+/, './');\n}\n\n/**\n * Generates source maps upload options for the Sentry Vite and Rollup plugin.\n *\n * Only exported for Testing purposes.\n */\n// todo(v11): This \"eslint-disable\" can be removed again once we remove deprecated options.\n// eslint-disable-next-line complexity\nexport function getPluginOptions(\n moduleOptions: SentryNuxtModuleOptions,\n shouldDeleteFilesFallback?: { client: boolean; server: boolean },\n): SentryVitePluginOptions | SentryRollupPluginOptions {\n // eslint-disable-next-line deprecation/deprecation\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;\n const fallbackFilesToDelete = [\n ...(shouldDeleteFilesFallback?.client ? ['.*/**/public/**/*.map'] : []),\n ...(shouldDeleteFilesFallback?.server\n ? ['.*/**/server/**/*.map', '.*/**/output/**/*.map', '.*/**/function/**/*.map']\n : []),\n ];\n\n // Check for filesToDeleteAfterUpload in new location first, then deprecated location\n const sourcemapsOptions = moduleOptions.sourcemaps || {};\n // eslint-disable-next-line deprecation/deprecation\n const deprecatedSourcemapsOptions = sourceMapsUploadOptions.sourcemaps || {};\n\n const filesToDeleteAfterUpload =\n sourcemapsOptions.filesToDeleteAfterUpload ??\n // eslint-disable-next-line deprecation/deprecation\n deprecatedSourcemapsOptions.filesToDeleteAfterUpload;\n\n if (typeof filesToDeleteAfterUpload === 'undefined' && shouldDeleteFilesAfterUpload && moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Setting \\`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete\n // Logging it as strings in the array\n .map(path => `\"${path}\"`)\n .join(', ')}]\\` to delete generated source maps after they were uploaded to Sentry.`,\n );\n }\n\n return {\n applicationKey: moduleOptions.applicationKey,\n // eslint-disable-next-line deprecation/deprecation\n org: moduleOptions.org ?? sourceMapsUploadOptions.org ?? process.env.SENTRY_ORG,\n // eslint-disable-next-line deprecation/deprecation\n project: moduleOptions.project ?? sourceMapsUploadOptions.project ?? process.env.SENTRY_PROJECT,\n // eslint-disable-next-line deprecation/deprecation\n authToken: moduleOptions.authToken ?? sourceMapsUploadOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,\n // eslint-disable-next-line deprecation/deprecation\n telemetry: moduleOptions.telemetry ?? sourceMapsUploadOptions.telemetry ?? true,\n // eslint-disable-next-line deprecation/deprecation\n url: moduleOptions.sentryUrl ?? sourceMapsUploadOptions.url ?? process.env.SENTRY_URL,\n headers: moduleOptions.headers,\n debug: moduleOptions.debug ?? false,\n // eslint-disable-next-line deprecation/deprecation\n silent: moduleOptions.silent ?? sourceMapsUploadOptions.silent ?? false,\n // eslint-disable-next-line deprecation/deprecation\n errorHandler: moduleOptions.errorHandler ?? sourceMapsUploadOptions.errorHandler,\n bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations, // todo: test if this can be overridden by the user\n release: {\n // eslint-disable-next-line deprecation/deprecation\n name: moduleOptions.release?.name ?? sourceMapsUploadOptions.release?.name,\n // Support all release options from BuildTimeOptionsBase\n ...moduleOptions.release,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release,\n },\n _metaOptions: {\n telemetry: {\n metaFramework: 'nuxt',\n },\n },\n ...moduleOptions?.unstable_sentryBundlerPluginOptions,\n\n sourcemaps: {\n disable: moduleOptions.sourcemaps?.disable,\n // The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')\n // We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).\n // If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],\n // eslint-disable-next-line deprecation/deprecation\n assets: sourcemapsOptions.assets ?? deprecatedSourcemapsOptions.assets ?? undefined,\n // eslint-disable-next-line deprecation/deprecation\n ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? undefined,\n filesToDeleteAfterUpload: filesToDeleteAfterUpload\n ? filesToDeleteAfterUpload\n : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client\n ? fallbackFilesToDelete\n : undefined,\n rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps,\n },\n };\n}\n\n/* There are multiple ways to set up source maps (https://github.com/getsentry/sentry-javascript/issues/13993 and https://github.com/getsentry/sentry-javascript/pull/15859)\n 1. User explicitly disabled source maps\n - keep this setting (emit a warning that errors won't be unminified in Sentry)\n - We will not upload anything\n 2. users enabled source map generation (true, hidden, inline).\n - keep this setting (don't do anything - like deletion - besides uploading)\n 3. users did not set source maps generation\n - we enable 'hidden' source maps generation\n - configure `filesToDeleteAfterUpload` to delete all .map files (we emit a log about this)\n\n Users only have to explicitly enable client source maps. Sentry only overwrites the base Nuxt source map settings as they propagate.\n */\n\n/** only exported for tests */\nexport function extractNuxtSourceMapSetting(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting; client?: SourceMapSetting } } },\n runtime: 'client' | 'server' | undefined,\n): SourceMapSetting | undefined {\n if (!runtime) {\n return undefined;\n } else {\n return typeof nuxt.options?.sourcemap === 'boolean' || typeof nuxt.options?.sourcemap === 'string'\n ? nuxt.options.sourcemap\n : nuxt.options?.sourcemap?.[runtime];\n }\n}\n\n/** only exported for testing */\nexport function changeNuxtSourceMapSettings(\n nuxt: Nuxt,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): { client: UserSourceMapSetting; server: UserSourceMapSetting } {\n nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: undefined, client: undefined };\n\n let previousUserSourceMapSetting: { client: UserSourceMapSetting; server: UserSourceMapSetting } = {\n client: undefined,\n server: undefined,\n };\n\n const nuxtSourceMap = nuxt.options.sourcemap;\n const isDebug = sentryModuleOptions.debug;\n\n if (typeof nuxtSourceMap === 'string' || typeof nuxtSourceMap === 'boolean' || typeof nuxtSourceMap === 'undefined') {\n switch (nuxtSourceMap) {\n case false:\n warnExplicitlyDisabledSourceMap('sourcemap', isDebug);\n previousUserSourceMapSetting = { client: 'disabled', server: 'disabled' };\n break;\n\n case 'hidden':\n case true:\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap', (nuxtSourceMap as true).toString());\n previousUserSourceMapSetting = { client: 'enabled', server: 'enabled' };\n break;\n case undefined:\n nuxt.options.sourcemap = { server: 'hidden', client: 'hidden' };\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting = { client: 'unset', server: 'unset' };\n break;\n }\n } else {\n if (nuxtSourceMap.client === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.client', isDebug);\n previousUserSourceMapSetting.client = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.client)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.client', nuxtSourceMap.client.toString());\n previousUserSourceMapSetting.client = 'enabled';\n } else {\n nuxt.options.sourcemap.client = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n previousUserSourceMapSetting.client = 'unset';\n }\n\n if (nuxtSourceMap.server === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.server', isDebug);\n previousUserSourceMapSetting.server = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.server)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.server', nuxtSourceMap.server.toString());\n previousUserSourceMapSetting.server = 'enabled';\n } else {\n nuxt.options.sourcemap.server = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting.server = 'unset';\n }\n }\n\n return previousUserSourceMapSetting;\n}\n\n/** Logs warnings about potentially conflicting source map settings.\n * Configures `sourcemapExcludeSources` in Nitro to make source maps usable in Sentry.\n *\n * only exported for testing\n */\nexport function validateNitroSourceMapSettings(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting } } },\n nitroConfig: NitroConfig,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): void {\n const isDebug = sentryModuleOptions.debug;\n const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, 'server');\n\n // NITRO CONFIG ---\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: 'nitro.sourceMap',\n otherSettingValue: nitroConfig.sourceMap,\n });\n\n // ROLLUP CONFIG ---\n\n nitroConfig.rollupConfig = nitroConfig.rollupConfig || {};\n nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: undefined };\n const nitroRollupSourceMap = nitroConfig.rollupConfig.output.sourcemap;\n\n // We don't override nitro.rollupConfig.output.sourcemap (undefined by default, but overrides all other server-side source map settings)\n if (typeof nitroRollupSourceMap !== 'undefined' && ['hidden', 'inline', true, false].includes(nitroRollupSourceMap)) {\n const settingKey = 'nitro.rollupConfig.output.sourcemap';\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: settingKey,\n otherSettingValue: nitroRollupSourceMap,\n });\n }\n\n nitroConfig.rollupConfig.output.sourcemapExcludeSources = false;\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry.',\n );\n }\n}\n\n/**\n * Validates that source map settings are consistent between Nuxt and Vite/Nitro configurations.\n * Logs a warning if conflicting settings are detected.\n *\n * @internal Only exported for testing.\n */\nexport function validateDifferentSourceMapSettings({\n nuxtSettingKey,\n nuxtSettingValue,\n otherSettingKey,\n otherSettingValue,\n}: {\n nuxtSettingKey: string;\n nuxtSettingValue?: SourceMapSetting;\n otherSettingKey: string;\n otherSettingValue?: SourceMapSetting;\n}): void {\n if (nuxtSettingValue !== otherSettingValue) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation settings are conflicting. Sentry uses \\`${nuxtSettingKey}: ${nuxtSettingValue}\\`. However, a conflicting setting was discovered (\\`${otherSettingKey}: ${otherSettingValue}\\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`,\n );\n }\n}\n\nfunction logKeepEnabledSourceMapSetting(\n sentryNuxtModuleOptions: SentryNuxtModuleOptions,\n settingKey: string,\n settingValue: string,\n): void {\n if (sentryNuxtModuleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] \\`${settingKey}\\` is enabled with \\`${settingValue}\\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`,\n );\n }\n}\n\nfunction warnExplicitlyDisabledSourceMap(settingKey: string, isDebug: boolean | undefined): void {\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation is currently disabled in your Vite configuration (\\`${settingKey}: false \\`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \\`${settingKey}\\` (e.g. by setting them to \\`hidden\\`).`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.warn(`[Sentry] Source map generation (\\`${settingKey}\\`) is disabled in your Vite configuration.`);\n }\n}\n\nfunction logSentryEnablesSourceMap(settingKey: string, settingValue: string): void {\n // eslint-disable-next-line no-console\n console.log(`[Sentry] Enabled source map generation in the build options with \\`${settingKey}: ${settingValue}\\`.`);\n}\n"],"names":["validateSourceMapsOptionsPlugin","sentryVitePlugin","sentryRollupPlugin"],"mappings":"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"}