-
Hi, guys im new to your library and i wondering how can i use any lazy load react components with SSR enabled? I've found library https://loadable-components.com/, and wrapping components in loadable …
-
I'm hoping to upgrade to Gatsby v5 soon but this plugin doesn't currently support it.
```
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While reso…
-
you can lazy load components with meteor 1.5 (rc.5 is out):
```
import("/path/to/mycomponent").then(default => (
))
```
there is even this cool https://github.com/thejameskyle/react-l…
-
I am using react-loadable-visibility to achieve lazy imports for a lot of my components and I was trying to synchronously (on a button click) , scroll the user to bottom but the components were not ye…
-
## Description
Currently, all the components are loaded as a single bundle
* Add [react-loadable](https://github.com/jamiebuilds/react-loadable) to lazy load the components only when it is requi…
-
First of all, I have been using this package, but recently, when I double-checked to optimize the loading speed, I found that it will load some files that are not needed by the current path, and these…
eugle updated
3 years ago
-
Hello! I'm not sure how to use fallback with delay as described in this doc: https://loadable-components.com/docs/delay/.
Given something like:
` pMinDelay(import("views/books", { fallback: loadin…
-
types are being lost due to how React-Loadable imports components
-
Using this within a nextjs app and getting this error:
```
ReferenceError: window is not defined
```
I am just trying basic examples:
```
```
-
Hello 👋
I am seeing the below JS error actually spamming my console until scroller.update() is called.
My setup uses Loadable components as well as lazy-loaded images - so a quite challenging setu…