react-universal-component icon indicating copy to clipboard operation
react-universal-component copied to clipboard

🚀 The final answer to a React Universal Component: simultaneous SSR + Code Splitting

Results 26 react-universal-component issues
Sort by recently updated
recently updated
newest added

I have raised a StackOverflow question on this: https://stackoverflow.com/questions/66909958/when-testing-a-static-method-the-preloadweek-method-is-undefined

will it work with webpack 5?

Hello, I'm using this repo for a long period, and am very satisfied with it's results. thanks for the awesome work! Now, while working on performance improvements of our SSR...

Getting some Webpack circular dependency warnings after a version upgrade from v2 to v4. ```sh WARNING in Circular dependency detected: node_modules/react-universal-component/dist/helpers.js -> node_modules/react-universal-component/dist/index.js -> node_modules/react-universal-component/dist/helpers.js WARNING in Circular dependency detected:...

Upgrading from v2.5.2 to v4.0.1. Don't see much in the release notes, but are there any particular gotchas (method deprecations, etc.) I should be aware of? Thanks.

currently getting this error when in StrictMode on the latest react `react-dom.development.js?61bb:545 Warning: Legacy context API has been detected within a strict-mode tree: ` `Please update the following components: UniversalComponent`...

Getting this error in the browser when I try to load my SSR app. I'm using webpack 4.16.5, RUC 3.0.3 Started getting the error after I upgraded babel to the...

I'm using `react-universal-component` in multiple `gatsby.js` projects. Current version of `gatsby.js` made switch from hot-reload to better supported by React `react-refresh` I've updating the codebase, and stumble upon yarn install...

What is the best way to detect that the `DoThis` has loaded? ``` const DoThis = universal(import(/* webpackChunkName: 'do-this' */ 'src/do-this.js')); class DoThisLoader extends React.Component { constructor() { super(); this.state...

In V4.0.0 onAfter is not being called if we called preload. [V4.0.0 Sandbox](https://codesandbox.io/s/react-sandbox-pxwr1) but in V3.0.3 onAfter is called correctly after we call preload. [V3.0.3 Sandbox](https://codesandbox.io/s/react-sandbox-jjpll) is it expected?

help wanted