Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
490 views

I was playing around with Remix when I ran into an unexpected error. Basically, I'm trying to render a clock on my web page that prints the current time accurate to seconds. However, I've noticed the ...
Sayeedur Rahman 's user avatar
1 vote
0 answers
231 views

Im trying to migrate a existing react js app built using cra , to vite ssr . I have installed all the dep packages and moved all the code . while im trying to run the project using npm run dev . I end ...
JEFF BRO's user avatar
1 vote
0 answers
284 views

I have a simple project where I am exposing the built FE project (which has React and ChakraUI) through an express server. Things go well until I import a Box component from chakra. It gets rendered ...
NyxNight's user avatar
  • 111
0 votes
1 answer
515 views

Using framer motion in one of my Next JS project. Getting an unusual console error while trying reloading the page. The page is using SSR from the most recent version of Next JS (V13.X.X). Error ...
Dibyendu Saha's user avatar
0 votes
0 answers
1k views

I am trying to implement SSR in React and I am using webpack and babel configuration. webpack.shared.config.js module.exports = { mode: "development", module: { rules: [ { ...
lazyCoder's user avatar
  • 609
2 votes
0 answers
2k views

I've created a simple page to test SSR implementation. There is one thing I couldn't be sure. If you could help to understand would be great! const EmptyPage = () => { console.log("rendered !...
atasoyh's user avatar
  • 3,155
0 votes
1 answer
293 views

I am trying to get google adsense to work with my application. I have a react SSR application so I am trying to implement the react-ssr-adsense package. Code changes to implement include installing ...
j-terranova's user avatar
2 votes
1 answer
2k views

I want to use the Google Adsense Auto-Ads with my react application. The react application uses SSR and I have added the code that Google provided me to the head section of the template as shown ...
j-terranova's user avatar
1 vote
0 answers
138 views

Below is the webpack production file const webpack = require("webpack"); const path = require('path'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const ...
Sushant Jadhav's user avatar
2 votes
1 answer
1k views

I am currently working with a headless WordPress site in Next.js. I struggle a bit with the routing for internationalization. I have 2 main page files relevant for this question: pages/[...slug].tsx ...
Lars Ejaas's user avatar
2 votes
0 answers
40 views

I want to use .pug and .jsx as express view engine. I tried it with other modules like @react-ssr/express, but they didn't work. (It seems that my project is based on a open source project that lastly ...
user15758006's user avatar
-1 votes
1 answer
572 views

I have started learning React Server Side Rendering. Then I configured "index.js" file as follows: const express = require('express'); const app = express(); const React = require('react'); ...
sinha.kushagra's user avatar
4 votes
0 answers
282 views

We can see JsonLd information in client side rendering. When we render through server, the information is not available because of rendering and then fetching data (through API). we have tried the ...
M.R's user avatar
  • 650
6 votes
0 answers
2k views

simplifying my post: my ssr webpage blinks when starting client which means page renders server side rendered html then goes blank and then it starts loading everything all over again. going through ...
zahra shahrouzi's user avatar
1 vote
1 answer
2k views

We use gifsicle version 5.1.0 in package.json, but the application start throws the following error. It is expecting a binary gifsicle under node_modules/gifsicle/vendor folder but trying to start the ...
Rpj's user avatar
  • 6,198
0 votes
1 answer
5k views

I am using react ssr with styled component and the google speed test says the largest content load speed is pretty slow. First paint time takes about 1.1s and the largest content for my site is image ...
fiddlest's user avatar
  • 1,302
1 vote
1 answer
4k views

I am currently working on a next.js app and so far so good, all has been going on fine but my client wants a feature that's quite difficult for me to implement. SO the site is at mysite.com and routes ...
Kenshinman's user avatar
0 votes
1 answer
155 views

I have a little problem with loading AdSense ads with react. The site is based on asp.net and I normally render react components on the server-side using @Html.React("name of the component") ...
Krzysztof Tryc's user avatar
2 votes
1 answer
1k views

I am building a react app and I did code splitting on the client for the bundle. My app properly render on the server as I am using SSR, I have no code Splitting on the server but on the client I do. ...
user8989's user avatar
  • 678
0 votes
0 answers
422 views

I am using react server side rendering with node to generate pdf. I have 3 files index.js, PDF.jsx, helper.jsx index.js contains following code. let fileContent = await Fsp.readFile('PDF.jsx', '...
Arkesh Kalathiya's user avatar
2 votes
0 answers
1k views

I am building a react app with the SSR feature and I am using React.Suspense for code-splitting on the client-side and I am getting this warning. Warning: Did not expect server HTML to contain a <...
user8989's user avatar
  • 678
6 votes
1 answer
935 views

My app has a simple routing with ssr and below is my code index.tsx import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; import App from "./App"; import * as ...
Giri's user avatar
  • 553
2 votes
0 answers
512 views

So, our team are working on a Gatsby website, and it's working correctly for most of us. One developer, however, needs to run gatsby clean on essentially every single code change. Doesn't matter if ...
MitchEff's user avatar
  • 1,607
0 votes
1 answer
511 views

I am adding js chunks in html using below tag <script crossorigin defer type="text/javascript" src="<chunk>"></script> at the end of body tag The same chunk is being loaded again ...
Pranab Gupta's user avatar
0 votes
1 answer
272 views

There is a website, the front is written by ReactJS. For the correct operation of the CEO, SSR is used. The algorithm is like: 1 page load the browser opens / foo; SSR checks if is in the cache /foo ...
Juniorrrrr's user avatar
0 votes
1 answer
88 views

I have started to work on react server side rendering, Having some questions i.e how about routing and can i implement server side rendering for all pages in application,Please provide any example on ...
Sudhir's user avatar
  • 579
-3 votes
1 answer
275 views

GitHub set a message for me, say: Bump acorn from 6.4.0 to 6.4.1 #1, and I merge, my project is ok? my project is react-ssr demo, why send me this message?
Knight's user avatar
  • 19
3 votes
0 answers
1k views

I'm trying to catch errors thrown from ReactDOM.render or ReactDOMServer.renderToString. I can't use componentDidCatch, because I'm trying to simulate an error thrown in SSR. I know that in SSR ...
Guy's user avatar
  • 1,617
1 vote
0 answers
713 views

I'm creating a React SSR Project. I have achieved server-side rendering with Redux integrated. However When I go through some component using api with bulk data, then while it's loading, hit the Back ...
Ravi Garg's user avatar
  • 1,542
1 vote
0 answers
1k views

I'm using this really awesome boilerplate for a React SSR app and am trying to add Material UI for css lib. I've gone through their guide for Server Side Rendering but seem to be doing something wrong ...
user3125823's user avatar
  • 1,958
0 votes
0 answers
822 views

I want to do server-side rendering with code splitting and the works. I'm using componentDidMount() to load data to be displayed. Before delving into ReactDOMServer, I would like to know how it would ...
HelloWorld's user avatar
  • 3,810
4 votes
1 answer
2k views

I generated a Razzle React app using yarn create-razzle-app my-app. I've deployed it to a nodeJS Elastic Beanstalk environment after building. After hitting the elastic beanstalk url, I see no CSS ...
Taylor Johnson's user avatar
1 vote
0 answers
562 views

I am trying to use Apollo client-state data with the hooks useQuery and useMutation as a global store inside a NextJS app. When I follow the example from NextJS called with-apollo (https://github.com/...
rnacken's user avatar
  • 300
3 votes
1 answer
4k views

I am trying to use firebase massaging in my SSR app which is created using https://github.com/jaredpalmer/razzle with-react-router-3. I am already using firebase which works great including hosting. ...
Subhendu Kundu's user avatar
3 votes
2 answers
12k views

I am trying to add CSS to my component built in React using SSR, but I am unable to do so. Things I've looked at: https://www.npmjs.com/package/isomorphic-style-loader https://cssinjs.org/server-side-...
Rahul Singh's user avatar
  • 19.7k
2 votes
2 answers
9k views

i am getting error when i use Error in react-toastify npm module and server side rendering. toastify/dist/ReactToastify.css Module parse failed: Unexpected token (1:0) You may need an appropriate ...
D V Yogesh's user avatar
  • 3,720
1 vote
0 answers
435 views

Am trying ssr using laravel react js. While am using spatie ssr package for laravel. all configuration setup is done. but whenever i trying to run its throwing error public function mustRun(...
Deepak's user avatar
  • 19
2 votes
1 answer
406 views

I am having a weird issue on the static file after run gatsby build. DOM's attributes (like className) could not be updated by listening to the prop change, but not the case of DOM's content, like ...
Max Ma's user avatar
  • 1,160
2 votes
1 answer
2k views

I have created a website which is React+Redux Serverside Render app, for loading server data I am dispatching an action on componentWillMount but it is an asynchronous request which loading data from ...
Amit Shakya's user avatar
0 votes
1 answer
610 views

I'm using Reactjs for server-side rendering, using the react-router-config package for achieving ssr but after change React Router to react-router-config code. Application stopped working The Error ...
Dinesh maurya's user avatar
0 votes
1 answer
347 views

However, as far as I know - I don't even have it installed. I believe I used to but I'm in the midst of updating this project to webpack4x and babel 7x. It was webpack 3x and babel 6x. Here is my ...
user3125823's user avatar
  • 1,958
0 votes
1 answer
2k views

I'm trying to change my react project client side rendering to server side rendering. There has a problem when I use my webpack config on css which is well used in my origin project(client side ...
최연석's user avatar
  • 377
1 vote
0 answers
543 views

I'm working on a ssr React application where I was using only Webpack for creating the client bundle. But now I have to add static files like images or custom fonts so I have to create a Webpack ...
diemate's user avatar
  • 31
2 votes
0 answers
574 views

I don't have a index.html file, the app is React SSR, which built with just an index.js entry file. To start the server I do node index.js. How do I deploy the app in firebase?
Subhendu Kundu's user avatar
1 vote
0 answers
207 views

I'm trying to create one component using react-responsive-carousel. But getting below message when trying to build the code for Server side. For Client Side, MiniCssExtract loader is able to read ...
smartSoc's user avatar
0 votes
1 answer
1k views

I've been struggling for the last few days to eliminate page flash. My project started with create-react-app, then I used help to set up SSR and various other options. When I started running into ...
nebain's user avatar
  • 123
2 votes
0 answers
407 views

I'm nearly done updating an old React (v15.2x) with SSR (RRv2.3) and webpack 1x code base for a movie app. I've updated nearly everything to current stuff (except for RRv3.2x). I'm getting this error ...
user3125823's user avatar
  • 1,958
1 vote
1 answer
75 views

My React SSR app loads modules at runtime when it knows which are needed. Webpack splits and bundles the code. The SSR app is hosted on server A, and the bundles must, for reasons beyond my control, ...
Lee Goddard's user avatar
  • 11.3k
2 votes
0 answers
1k views

I am facing an issue in react SSR. Added two plugins which are as under import 'fullcalendar'; import 'fullcalendar-scheduler'; FullCalander throwing an error in terminal which is stated below ...
Kailash Chandra's user avatar
1 vote
1 answer
247 views

I am following this tutorial: https://crypt.codemancers.com/posts/2017-06-03-reactjs-server-side-rendering-with-router-v4-and-redux/ which i think is the 'standard' way of doing server side rendering ...
Shikyo's user avatar
  • 1,735