mirror of https://github.com/sveltejs/svelte
[fix] handle preprocess with empty sourcemaps (#6757)
parent
dad0284771
commit
b845307698
@ -0,0 +1,7 @@
|
||||
export default {
|
||||
preprocess: {
|
||||
style: ({ content }) => {
|
||||
return { code: content, map: { mappings: '' } };
|
||||
}
|
||||
}
|
||||
};
|
@ -0,0 +1,7 @@
|
||||
<div class="foo">bar</div>
|
||||
|
||||
<style>
|
||||
.foo {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,7 @@
|
||||
<div class="foo">bar</div>
|
||||
|
||||
<style>
|
||||
.foo {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue