Dominik G.

Results 155 comments of Dominik G.

I think I stumbled into this a while back 😔 https://github.com/vitejs/vite/blob/fa8574921195dd03b539c150a2ae5f97121a0aea/packages/vite/src/node/plugins/css.ts#L211 the map could be available from the compileCss result a few lines above

Spent some time on this recently and here's what i found. * sourcemaps didn't work in vite1 too [1] * simply returning the `map` from compileCss in vite:css [2] doesn't...

unfortunately it looks like that it now hangs the firefox tests. investigating tomorrow.

firefox may be hanging due to https://github.com/microsoft/playwright/issues/15550

oh, didn't realize the firefox issue might be fixed. Not sure if it is still needed, i think separating the write tests into their own app made this mostly obsolete....

now linux+chrome has fails with waiting for that console message. at this point it's safe to say that this does not improve stability

`css: true` adds the css via javascript. So if you disable js, that doesn't work. May i ask why you opt to use a custom plugin calling svelte.compile yourself instead...

It looks like cloudflare does not support everything on RequestInit, here's what they have https://developers.cloudflare.com/workers//runtime-apis/request#requestinit mode and credentials are not on it

Just accessing credentials (or mode i guess) throws an error, so even `req.credentials !== 'omit'` isn't working. It's not just undefined, you cannot use it at all in cloudflare at...

only workaround i found so far is reverting to 1.0.0-next.469 which is the release before #6565 was introduced (next.470).