-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
Missing/broken sourcemaps for JS modules w/ imports when used with Vue #7767
Comments
duplicate of vitejs/vite-plugin-vue#33 |
This doesn’t sound like the same issue to me ( but maybe it shares an underlying cause?). This doesn’t have anything to do with reloading and isn’t something that affects Vue components. This only affects vanilla JS modules which import other JS modules. Line numbers aren’t messed up, and the issue is not breaking on an incorrect line, but instead an incorrect file. I’ve seen the HMR reload issue myself, and I actually encountered it when trying to create a simple example of this issue, but this is not the same thing. |
And to clarify, this is something that happens 100% of the time and still persists after getting past the HMR issue discussed in the other issue. |
I thought they were the same, but it seem to be slightly different, so I will reopen this one. Thank you. |
I am facing the same issue. It is kind of annoying, which is not a valuable addition to the discussion, I know, but I'm saying this to offer any additional information or help for the issue, as it makes debugging quite miserable. |
Looking into it looks like to me the issue is caused by simply the fact that the file seen by the browser and by the IDE are different. Probably there's a hash or byte-wise comparison, and if they don't match, the IDE shows the actual file, not the one in the project. So for example if I have a module that has an import in line 1 such as: import { useAuthStore } from 'stores/auth' Vite will change this line by the time it gets in the browser to: import { useAuthStore } from '/src/stores/auth.js' therefore the IDE sees it as a different file. At this point I'd like to say that if this really is the reason, the IDE does it right, as if the file is different in the browser, proper debugging is not possible, unless the same file is being shown in the debugger. To confirm this consider the following. My project is set up in a way, that my application compiles just as well if I replace the given import in line 1, with the same that Vite would send to the browser: import { useAuthStore } from '/src/stores/auth.js' At this point there is no longer any difference between the file known by the IDE and the browser, they match byte-to-byte. And voilà, the debugger in IDE now opens the source file from the project, instead of the browser. Based on this I would state cause of the issue is that Vite changes the files sent to the browser thus prevents the IDE to allow a debugger to step over the original source file. Now this is an assumption of mine, but based on the comment from JetBrains a proper sourcemap could solve the issue. My understanding is that if a sourcemap was provided, the browser could use that to mock the original source file instead of the actual file it has received. If the sourcemap works correctly, the mocked file would match byte-to-byte the original file in the project, so the IDE could allow the stepper to work with the original source file instead of showing the modified file from the browser. For me the solution seems to be to add source map to all files that are changed, even if not minified. I've tried to enable source mapping in dev mode, but could not. I've even tried to enable minification, as even the overhead to minify would worth it just to get proper debugging - assuming that if minified, sourcemap would be added - but I couldn't. Not sure if that is not supported by vite or my build config. Anyway, the goal is to get sourcemaps for JS files in dev mode. Anyone has a pointer to where to look forward, please? |
So after some digging it looks like to me, that |
I've got it working by implementing source maps inside I've been working on In if (s) {
return s.toString();
} with: if (s) {
return { code: s.toString(), map: s.generateMap({ hires: false, source: importerModule.url, includeContent: true }) }
} The same logic can be applied in the latest branch, by modifying https://github.com/vitejs/vite/blob/main/packages/vite/src/node/utils.ts#L1114 which righ now only generates source map in However that is an oversight as without proper SourceMaps debugging cannot be used, which should be considered in Probably the best would be to simply add a new option under Let me know your thoughts also if a PR would be welcome for these changes. I guess documentation would need to be updated as well, but after all it is a pretty low key change to fix such an annoying and long standing issue! Meanwhile anyone can monkey-patch their vite following the above and applying the same changes in the dist chunks in node_modules. In |
Thanks for digging into this one. I am thinking that it might only matter whether the sourcemap maps if (s) {
const newCode = s.toString()
const map = new MagicString(newCode).generateMap({ source: importerModule.url });
return { code: s.toString(), map }
} If this works, I think we only need to inject sourcemap when a query is injected (example: |
Afaics only adding the source without the proper mappings may only work as long as the number of lines are not changed and there are no changes at all to actual code lines (i mean other than imports). Also I think this is exactly the case here, so it may be a nice trick to reduce overhead. Will try soon an update. |
I can confirm it is working at least in my test case as shown above, with only setting the By the same token, if the overhead associated with generating an actual SourceMap is not welcome in dev mode (understandable), maybe |
Sourcemap always have to be injected when there is a change made to any JS files, because otherwise the IDE cannot properly present the debugger. The initial request from the browser for a JS file imported into a Vue component (my test case) is without any query string. Of course, if I make a change and hot reload gets a new version of the file, a So the cases I see are: 1.) Contents of a file are not changed at all by Vite, just served as they are: no need for sourcemap, because the IDE will know based on path the correct file, and when the IDE compares the file seen by the Browser to the file it has will recognise they are the same - it is an assumption on my side, but this explains the behaviour I see, namely that if the file is edited in a way, that Vite does not have to make changes to it, the debugger works fine even without a sourcemap. 2.) Contents of a file are changed by Vite, but the changes are only rewritten imports: no need for an actual sourcemap, but needs a dummy sourcemap with an empty 3.) Contents of a file are changed by Vite beyond only rewritten imports: In this case a full blown sourcemap is required for proper debugging. Without a sourcemap the IDE would show a read only copy of the served file (original issue) and if a minimal sourcemap is used as in 2. the IDE would show breakpoints at incorrect lines and character positions. Now I'm not sure if Vite would ever do a type 3. change to a file during serving it in |
Generating the sourcemap is the most heavy operation among MagicString related ones. Creating the MagicString instance and doing manipulation by it does not have a large impact on performanace. (Actually creating an instance is a bit heavy but it should be solved by Rich-Harris/magic-string#216 after the new release)
I guess injecting a dummy sourcemap won't have much impact on performance. So I think we could simply inject a dummy sourcemap here if a sourcemap was not injected. (If a plugin changed the contents of the file and changing the lines, that plugin should be generating the sourcemap and that sourcemap will injected here.) vite/packages/vite/src/node/server/transformRequest.ts Lines 254 to 259 in aff4544
Would you like to create a PR for this? If not, I will create it. |
Meanwhile v3 has changed the affected code a bit factoring it into an utility method, so the PR has different bits, but the meaning is the same. Also I've added the hires parameter for the simplified sourcemap too, as without it the resolution of the sourcemap of some existing test cases were reduced, probably because other manipulations on the file continue to accumulate changes in the same sourcemap, so it does matter to initialise it with The PR includes one new test in Hope it'll be okay like this. |
I’m using VSCode & working with React and I face the same issue. It only manifests itself when I run the app (and try to debug it) from Docker, though, locally it’s fine. |
More findings—it seems to happen only with |
Same issue with VSCode + Vite + Vue3, happens with .js, not .vue |
Yup, we are only talking about The explanation for the Docker vs. Local difference can be that VSCode seem to be less picky about the correct sourceMap when it can match the files based on path, but it may not understand how to do a 3 way match, like the file in your IDE, the file in Docker and the file reported by the browser. But I'm only speculating here. The PR is near merge I think, so it should be resolved soon. If you know how to monkey patch your The PR is here: #9476 |
) (#9476) Co-authored-by: sapphi-red <green@sapphi.red>
…tejs#7767) (vitejs#9476) Co-authored-by: sapphi-red <green@sapphi.red>
@Enzojz: I'm not using VSCode myself, but I had similar case with PHPStorm. Afaics it happen when I set and unset breakpoints in both the browser (Chrome) and the IDE in the same session. When I only set and unset breakpoints in one, so either only in Browser or only in IDE it works fine for me. If I unset a breakpoint in the Browser which I configured in the IDE, it disappears, but still breaks execution, so that's not a good practice. As a side-note: I think it is unrelated to this issue
|
…debugging (vitejs#7767) (vitejs#9476)" This reverts commit 3fa96f6.
|
@Enzojz : Have you been using this kind of debugging in the same setup (same IDE, same project, same browser etc.) prior to v4.0.0-alpha.6 without issues? |
@patak-dev Could you please reopen this issue, now that the related PR has been rolled back due to unexpected side effect in SvelteKit? (#11144) I'll make a new PR with a different approach because the "fix" implemented in #9476 was only a workaround, but looks like insufficient for all use cases. |
So additional findings:
Now the plan is this (thx @dominikg):
Regarding adding an option, obviously bloating the config with options is not a goal, but the current situation actually hurts both of 2 possible usecases:
Obviously, the benefit of giving up sourcemaps would need more changes to transformation plugins, as all should than observe this configuration and skip using MagicString and generating sourcemaps, but it could potentially speed up dev mode a lot when sourcemaps are not needed. So now I'll make another PR with a more comprehensive fix and do some tests there to see if performance is really a concern to address with a new setting, or can we just enable sourcemaps for JS importAnalysis and be happy with that. EDIT: We have switched to TypeScript where this is basically a no issue, so I'll eventually not got to the point of working on it any further. |
|
I seem to be having this issue after migrating from CRA. I came here from Jetbrain Youtrack Issue. VScode hits breakpoints that return a remote copy of the file instead of the expected actual source file in the VScode editor. |
Experiencing the same issue. Making all the imports in the given file single-line fixes the issue. However this is not a viable solution as its incompatible with clean code principles. Is there a working solution that supports multi-line imports? |
I'm also experiencing this issue. It seems we cannot debug JS files with vite at the moment, which is a bit hard to believe. I'm curious if maybe I've just missed something simple? Chrome devtools skips over breakpoints in JS files. If I hit CMD+P to try and locate a JS file for debugging, devtools lists about 10 versions for each JS file, each with a different "t" query param. IntelliJ IDE's just throw an error stating it cannot locate the file. It does appear to have the ability to manually map URL's to disk paths, but I haven't been able to get it working. Is it still possible to monkey patch vite to generate sourcemaps for JS? For the time being it seems renaming JS files to JSX works, but this isn't really desirable for pure JS code. i.e redux actions, etc. Would appreciate any tips. |
Steps 3-6.) here would still be needed to potentially fix this. Alternatively you can check if the fix in #9476 could be either monkey patched or merged on a fork on top of the current version of Vite, but that would most probably be not trivial, as that had its first birthday just these days, so the code it refers to most probably has changed a lot already since. Another alternative can be to switch to TypeScript. I know, it would be strange to switch for this reason, but we did after all. Indeed not only because of this issue, but for many other reasons, but it was a push towards that direction. |
Vite 5.0.0-beta.1 includes #13514 that might fix this. Would anyone try it with IntelliJ IDE's? |
I've did a quick check and it seems like to be much better than before with few caveats: There's still a problem with proper mapping to the exact source file for rewritten
Now I cannot argue which one is better, but what I can say for sure that both cannot be good, and also what I can say is that IntelliJ IDE is able to identify Surely enough, if a simple project when there's only one file that matches This suggests that the Another strange thing I've noticed is that the view the browser (both Chrome and Firefox) reconstructs for the original file contains the last line |
Describe the bug
I originally reported this to JetBrains, and they seem to think it's an issue caused by sourcemaps not being generated by Vite. The same project moved over, running, and debugging on Vue-CLI does not have this issue and breakpoints are hit in the correct file.
https://youtrack.jetbrains.com/issue/WEB-55544
IntelliJ/WebStorm/VSCode seems to be unable to properly debug local JavaScript files when debugging JS modules imported into Vue components in a Vite project.
If you import a regular JS module into your component which itself has an import IJ/WS/VSC is unable to properly map the local .js file to the remote file for JavaScript debugging purposes due to missing/broken sourcemaps. When you place a breakpoint in your JS module source a new, read-only copy of the remote file is loaded from http://localhost:3000/src/xxx/xxx.js in the IDE and the breakpoint stops there instead of in the original JS file. This means that you have to debug in a read-only copy and then swap to your local copy for edits, which can be a big pain.
It looks like this only happens when the modules themselves have imports. You can see that the remote file has a changed "import" line and so that might be causing it to not match up. Here's a screenshot from a sample project where the import inside the module causes the mismatch. You can see this difference between the local and "remote" on line 1.
I've also created an example project which replicates this issue.
https://github.com/Smef/vite-debug-issue-demo
Reproduction
https://github.com/Smef/vite-debug-issue-demo
System Info
Used Package Manager
npm
Logs
No response
Validations
The text was updated successfully, but these errors were encountered: