Genki Takiuchi

Results 103 comments of Genki Takiuchi

I have made 2 profiles on my M2 Mac and checked their eth0 by `ifconfig`, then they have configured to same IP address. Profile A: ``` eth0 Link encap:Ethernet HWaddr...

Now we can do like this: ```ts export default component$(() => { const {scopeId} = useStylesScoped(styles); //... return ( ); }); ```

I think there should be a handler for fail of the dynamic import in the qwikloader. The handler should do * handle the error and enqueue the failed import. *...

Excuse me, I found the criminal was Mac OS. It was fixed after reboot.

For `loader$`, it seemed that follows the redirect location to fetch data if `throw redirect(...)`. But if just call `redirect(...)` then the browser is navigated to the location. Is this...

I think `useContent()` can be used for that purpose, but it would be nice if it's possible to use a component instead of the `menu.md`. For ex, expected the ``...

@mhevery I came up with a workaround that should work, but it doesn't. https://stackblitz.com/edit/qwik-starter-6udjqi?file=src%2Froutes%2Findex.tsx If we use the `useVisibleTask$` instead of the `useTask$` then it works. https://stackblitz.com/edit/qwik-starter-nxhuhk?file=src%2Froutes%2Findex.tsx Might found a...

@mhevery Oh, I see. And I fixed the workaround to work fine this time. https://stackblitz.com/edit/qwik-starter-6udjqi?file=src%2Froutes%2Findex.tsx As you explained, this trick can be used only for footers and so on :)