Jonas Kuske

Results 86 comments of Jonas Kuske

And here's whats logged for my actual usecase, using the Epiphany browser (to debug sites in WebKit): ``` > flatpak run --device=all --filesystem=host-os:ro --env=LD_LIBRARY_PATH=/run/host/usr/lib/wsl/lib --env=LIBGL_DEBUG=verbose --env=D3D12_DEBUG=all --env=MESA_DEBUG=1 --env=GALLIUM_PRINT_OPTIONS=1 --env=GALLIUM_DRIVER=d3d12 org.gnome.Epiphany...

@hideyukn88 Yeah, this is specifically about flatpak. GPU works im general (apart from the Nvidia segfault described in https://github.com/microsoft/WSL/issues/8145), but I'm not sure how to get it to work in...

Also running into this. Not sure what a fix would look like, but happy to contribute a fix with some guidance

> Why would it be important for fixed-positioned elements to also have a stable layout? I think this needs to be shown via a use-case. The use case is a...

Angular is using esbuild directly (and Vite just for the dev server). But my team is successfully using rollup asset paths: ```scss @use "@db-ui/core/sources/css/rollup.assets-paths" as rollupAssetsPaths; @use "@db-ui/core/sources/css/enterprise/db-ui-core" with (...

Would love to see this! It should make it possible to write a plugin for the [Logitech Craft keyboard and its rotating crown](https://github.com/Logitech/logi_craft_sdk) that would enable support in all apps...

Yup! Looking into it atm. I think one approach would be to pass `true` for the `keepComment` arg, another to change the generated SSR code so it doesn't output the...

@LiamMartens > Is there any workaround available for this issue? Replacing the `v-if` with a `v-for` should work: ```html Hello! Hello! ```

> For me it not only happens with v-if child, but also when you have a slot in a reusable transition component (as mentioned in this closed issue #6922): >...

@antokhio This is a bit strange but: ```js // doesn't work: const getWorker = () => new Worker(new URL('./worker.js', import.meta.url), { type: 'module' }) // works: const url = new...