You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're not doing something wrong. This is a default esbuild behavior. Source maps in CSS are not supported yet. Just copying the input source map comment over to the output file would be incorrect because the input source map contains mappings for the input file, not the output file. The source map would need to be rewritten by esbuild to get this to work correctly.
Hello,
I'm trying to make scss source map implementation with my custom plugin, unfortunately source map comment is being eaten away.
compiled.css.toString() returns me:
but the output of the css file is
*{background-color:#000;color:red}
I also looked into legal comments, but that seems to only work with .js, ts files.
Am I doing something wrong or this is a default esbuild behavior?
The text was updated successfully, but these errors were encountered: