-
-
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
Vite is seemingly creating empty/junk source maps when optimizing dependencies #17474
Comments
Start a new pull request in StackBlitz Codeflow. |
Facing the same issue. Seems to appear randomly - closing and re-opening firefox leads to the warning being gone for some time. Anyone had some luck investigating what's the issue here? From my project (which I can't share), it seems that vite might have a bad time if a dependencies code is imported - it then creates an empty sourceMap. E.g. CalendarSolid.js
CalendarSolid.js.map
My understanding is that CalendarSolid's source code is bundled with other components as part of some optimization, as that component is used a Component from the package, which I'm importing it from. I was able to confirm this, by removing the import of that icon from within the package in which it lives, and at that point, vite had no troubles creating the sourceMap (as the source code for the icon, was present in the CalendarSolid.js file). |
I face the same issue when I import a Example: const data = await import('./data.json')
const info = await import('./info.txt?inline') giving empty {"version":3,"file":"data-wlzQ5Jg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"} {"version":3,"file":"info-CYq4RkKC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"} which makes some browsers generate a "No sources are declared in this source map" warning for each involved file |
It looks like "empty" source map is coming from esbuild's code splitting bundle. Here is a similar output from The original code from Interestingly, when I use @yukulele Json and text import source map is not from esbuild, so that's a different issue. Can you open a separate issue with a reproduction? |
Any fix for this? I am having this issue with React v18 and Vite v5.4 |
I've resorted to turning off source maps in Firefox (dev console --> debugger tab --> settings/gear --> source maps) and only enabling them when I need to actually hit breakpoints and debug in the browser. |
Describe the bug
When running a very basic Preact app (see reproduction), in FireFox (perhaps elsewhere too, unsure), users see warnings of
No sources are declared in this source map
and indeed, the optimized dependencies have empty generated source maps.Warning & Source Map
Repeat this warning then for every dependency
I see nothing at this time that indicates an issue with Preact's source maps (and in fact, I see this same issue for modules that have no build step and, ergo, no source maps) though even if there was (and I'll keep looking), generating empty source maps like this creates a lot of noise with no value; I'd prefer if no source map was created at all at that point. Seeing 15 warnings of empty source maps is not very helpful.
Potentially related to #7767
Reproduction
https://stackblitz.com/edit/vitejs-vite-xbgtoq?file=src%2Fmain.jsx
Steps to reproduce
npm install && npm run dev
open node_modules/.vite/deps/preact.js.map
System Info
System: OS: Linux 6.9 EndeavourOS CPU: (4) x64 AMD Ryzen 7 5800X 8-Core Processor Memory: 3.44 GB / 11.65 GB Container: Yes Shell: 5.9 - /usr/bin/zsh Binaries: Node: 22.2.0 - /usr/bin/node Yarn: 1.22.22 - /usr/bin/yarn npm: 10.8.1 - /usr/bin/npm pnpm: 9.3.0 - /usr/bin/pnpm Browsers: Chromium: 125.0.6422.141 npmPackages: vite: ^5.2.2 => 5.3.0
Used Package Manager
npm
Logs
No response
Validations
The text was updated successfully, but these errors were encountered: