Daniel Saewitz

Results 72 comments of Daniel Saewitz

> Thanks @oxyii. For any Expo users `expo start -c` does the trick in Expo SDK >= 33 Been fighting this one for a while, thank you.

I'm working on a branch where this is done. Feel free to contribute to it. https://github.com/switz/derby-auth/blob/token/index.js#L137

Next.js has now rolled out streaming SSR support so this is now a big blocker for folks to opt-in to that. https://nextjs.org/docs/advanced-features/react-18/streaming Here's the [style upgrade guide for library authors](https://github.com/reactwg/react-18/discussions/110)

Also would be very interested in a feature like this 👍

It looks like in order to dynamically import react components in nextjs you must wrap it in a `next/dynamic` import: https://nextjs.org/docs/advanced-features/dynamic-import#basic-usage ``` import dynamic from 'next/dynamic' const DynamicComponent = dynamic(()...

What's interesting is it is loading in the icons dynamically (chunk 380), but it's loading _all_ of them at once.

I also just noticed this in the next.js docs: > Note: In import('path/to/component'), the path must be explicitly written. **It can't be a template string nor a variable.** Furthermore the...

I converted all of my icon calls to component imports (`import { Tick } from '@blueprintjs/icons'`) and it did tree shake successfully via next.js and webpack 5. So my issue...