Open sp0033212000 opened 3 years ago
I started to receive this error message as well. The odd thing is that I have several .svelte files importing css files... but only one is giving me this error so far.
Table.svelte (this works)
<script>
import './tables.pcss';
</script>
Pager.svelte (this throws the error)
<script>
import './pagers.pcss';
</script>
In both cases, the (taliwind) css files look like...
@layer components {
.some-class {}
}
I got this error when I rollup tailwind module.
My rollup config: