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
{{ message }}
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
This happens because rollup doesn't care about other sourcemaps than js ones.
The only way to get this to work is to pass in a sourcemap option to rollup-plugin-svelte. This not currently supported but I am looking into it and will probably start a PR for it.
Looks like sapper does some custom plugin injection for rollup and the answer was to implement this into sapper. I included a commit that will add this functionality in my PR.
config.client.output()
always return an object with a truthysourcemap
property, so I get sourcemap files for both js and css files.Even when using
when
dev
is falsy I still get sourcemap files for css files (but not for js files).Is it related to #421 ?
The text was updated successfully, but these errors were encountered: