Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/core/e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ export function hasStepSourceMaps(): boolean {
return false;
}

// Vercel builds have proper source maps for all other frameworks, EXCEPT sveltekit
// Vercel production builds don't support step source maps
if (process.env.WORKFLOW_VERCEL_ENV === 'production') {
return false;
}

// Vercel preview builds have proper source maps for all other frameworks, EXCEPT sveltekit
if (!isLocalDeployment()) {
return appName !== 'sveltekit';
}
Expand Down
Loading