We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66585fd commit 4fd9300Copy full SHA for 4fd9300
2 files changed
.changeset/cool-cups-greet.md
@@ -0,0 +1,2 @@
1
+---
2
packages/core/e2e/utils.ts
@@ -56,12 +56,9 @@ export function hasStepSourceMaps(): boolean {
56
return false;
57
}
58
59
- // Vercel production builds don't support step source maps
60
- if (process.env.WORKFLOW_VERCEL_ENV === 'production') {
61
- return false;
62
- }
63
-
64
- // Vercel preview builds have proper source maps for all other frameworks, EXCEPT sveltekit
+ // Vercel deployments (both production and preview) have proper source maps
+ // for all frameworks EXCEPT sveltekit, thanks to ESM step bundles with
+ // inline source maps.
65
if (!isLocalDeployment()) {
66
return appName !== 'sveltekit';
67
0 commit comments