Johannes Mutter

Results 4 comments of Johannes Mutter

I experience the same issue. Not only does optimizeCss remove carbon-charts styles (in my case the legend), but it also removes the search bar styles of the UI shell and...

Same issue here using SvelteKit. I thought it had something to do with node-sass, sass or svelte-preprocess. But couldn’t nail it down yet. ```javascript import adapter from '@sveltejs/adapter-auto'; import {...

Can confirm. Also weirdly the global { } selector issue not happening in the Svelte 5 [REPL](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAAE31PzUrGMBB8lbCX71Ibeg2xID6G8VCb1Czkj2S_ail9d0mCehFPOzvMzuycsKEzBcTLCWHxBgQ8pQQD0JHqUnbjyMAAJd7zWhlZ1oyJZhUUoU8xE3u26DTbcvTsNvK2jf3wpoLkvwdBatzZ6pZSHhX440HjrmBWQXYLXiHXuHdxocOZFjR2LRPvLr4tjp2VVGSnb6RojS5mwbLRnbnquFp-s4EBfNS4odEgKN_NNfxUbun_lrbT3F-0E_tAsozMJ0lupz98X68vrTcD_VYBAAA=) but only in a freshly installed sveltekit project in dev mode (?) `:global(...)...

Same issue. As a temporary fix I'm using the on:loadmetadata event to set the volume to 0. ```Svelte let videos = ["1.mp4","2.mp4"]; let videoElements = []; {#each videos as src,...