Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: inline sourcemaps to help with debugging #6768

Merged
merged 1 commit into from
May 14, 2024
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
1 change: 1 addition & 0 deletions vite.base.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export function getBaseViteConfig(
esbuild: {
banner,
legalComments: "none",
sourcemap: "inline",
Copy link
Contributor

@nazarhussain nazarhussain May 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The vite file is not for the vitest, rather it's for the bundle packages. I am surprised changing any of this effects debugging. If you actually need sourcemaps for the tests then use this option https://vitest.dev/config/#server-sourcemap

},
build: {
// "modules" refer to ['es2020', 'edge88', 'firefox78', 'chrome87', 'safari14']
Expand Down
Loading