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
I have an Angular dev server using swc, this plugin solved the code transformation problem a lot.
However this plugin discards all styleUrls and replaces them with empty styles: [].
Can we have some options to preserve styles in the result, so we can use it for Angular dev server?
The text was updated successfully, but these errors were encountered:
So I tried to add transforming styleUrls, it now works well on the dev server.
When running tests in this repo, Vitest is fine, but Jest reports error due to CSS imported as objects.
We need to either make preserving styles optional (enabled or disabled by default), or add a workaround
to the existing Jest configs (might make this a breaking change).
I have an Angular dev server using swc, this plugin solved the code transformation problem a lot.
However this plugin discards all
styleUrls
and replaces them with emptystyles: []
.Can we have some options to preserve styles in the result, so we can use it for Angular dev server?
The text was updated successfully, but these errors were encountered: