Yury Zhuravlev

Results 348 comments of Yury Zhuravlev

hmm it's a huge stopper, in that case not possible to use any external CSS with SvelteKit especially if you must overwrite something.

Yes, but how to support dynamic external CSS? The URL depends on the current user's theme choice. ``` ``` I think I can implement by `%mycssurl%` replacement in `app.html` but...

@Rich-Harris seems like working BUT looks awkward especially because I should share session data between `+layout.server.js` and `hooks.server.js` by a global variable (also it's probably can be the point of...

I 100% agree current search is far away from perfect.

If I am using `fetch` from the node directly instead `load` function argument - this issue is gone.

hmm because of this https://github.com/sveltejs/kit/blob/master/packages/kit/src/exports/node/polyfills.js#L1 even if nodejs support fetch we are using undici implementation.

okey, I found the root of the leak it's how we tricky use handleFetch here https://github.com/sveltejs/kit/blob/master/packages/kit/src/runtime/server/fetch.js#L25 if I return our internal fetch as is, it's working fine, but if by:...

sorry, it's a little bit different: if I use `return await fetch(info, init)` it has no leak but if I start using `return await fetch(original_request)` it's leaked I am hacking...

okey, hot fix is here https://github.com/nodejs/undici/pull/1824 seems like it's a serious issue, and we must wait for a new release.

Cool! Now we should update deps for kit.