Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
9 views

I’m using React with AG Grid Server-Side Row Model (SSR). I have a situation where the backend returns fewer rows than the page size, but still indicates that hasMorePages = true because the user has ...
cejlonski's user avatar
0 votes
0 answers
25 views

I've been following the documentations in Tanstack Start on Selective SSR. However I can't get it to run. I tried to inspect the page source, but it always shows the javascript instead of the server-...
Arif Oyong's user avatar
0 votes
0 answers
26 views

I have a memory leak in a Next.js 15.3.3 App Router app running on GKE. Heap snapshots show that Zustand stores created per request are never released, and memory grows steadily until the container is ...
vishwas parashar's user avatar
Advice
0 votes
1 replies
30 views

How to implement Auth0 Universal Login + Silent SSO + SLO in a legacy Spring MVC (SSR) app? Can the Auth0 SPA SDK be used? I have a legacy Spring MVC (server-side rendered) application using: Spring ...
Abhishek Singh's user avatar
0 votes
1 answer
26 views

How can I get the seo of my Nuxt app from one external api, in this case strapi, and use it in my app, actually I have this, // enter code here import { getEnv } from "../src/utils"; import {...
xavi zamora's user avatar
1 vote
1 answer
75 views

Does anyone know if there's an easy way in Blazor to have: A frontend/'user facing' site using Blazor Static SSR I don't want to include blazor.web.js, no enhanced navigation or streaming rendering ...
Zak123's user avatar
  • 455
0 votes
1 answer
182 views

The TailwindCSS website currently doesn't have any guidance related to Bun, so it's difficult for me to figure out how to properly integrate v4 with Bun SSR. I found a bun-plugin-tailwind dependency ...
Gabriel Rubio's user avatar
1 vote
0 answers
45 views

If build&deploy non-ssr localized versions as subdomains like en.example.org uk.example.org fr.example.org angular.json configuration looks like "i18n": { "...
Dmitry's user avatar
  • 11
Best practices
0 votes
0 replies
54 views

I'm working on a Next.js 14 app with several dynamic routes (e.g., /product/[id]) that render product details from a large dataset (around 50k+ records) stored in PostgreSQL. I'm using ...
Mina Golzari Dalir's user avatar
0 votes
0 answers
56 views

I’m using the Next.js App Router and trying to understand how rendering type is decided. In my page, I have both generateStaticParams() and a server component that fetches data: export async function ...
Muhammad Faisal's user avatar
0 votes
1 answer
97 views

I’m trying to deploy a Nuxt 4 full-stack app to Vercel, and while the frontend builds and loads correctly, all my backend API routes fail, and there is no response from the composables or server apis. ...
ravesandstorm's user avatar
1 vote
0 answers
65 views

We're experiencing a consistent 1-1.5 second delay in our Angular SSR v20.2.2 application that occurs after all Angular rendering completes but before the response is sent to the client. The delay ...
DevJules's user avatar
  • 332
4 votes
0 answers
142 views

I came across surprising hydration mismatch in a Next.js 15 App Router app when I synchronously instantiate a small WebAssembly module during the render of a client component. Server builds fine. On ...
Gnaneshwar P's user avatar
0 votes
2 answers
127 views

I have been using react query and next.js , I need to know how can achieve server side rendering using react query, I can achieve with this using normal fetch or axios in the server side components, ...
arjun tv's user avatar
0 votes
0 answers
69 views

I'm using Angular SSR (@angular/ssr) with the AngularNodeAppEngine for server-side rendering. I\ve set up a strict Content Security Policy (CSP) that requires using nonces for inline scripts and ...
Stan van Heumen's user avatar
2 votes
0 answers
43 views

I have just set up a very basic test Angular 19 app with SSR, but I keep getting the following error message when I use the Prerender Rendermode and I build the app (ng build): ERROR re [Error]: ...
user1625551's user avatar
0 votes
0 answers
48 views

I've noticed that with Astrojs it appears that the page setting is dominate when it comes to executing a request as static or SSR. What I mean by this is: If page is marked static and endpoint is ...
Robert Kendrick's user avatar
0 votes
0 answers
66 views

Our team is exploring how to best use Lit components within a Next.js App Router setup where most pages are server-rendered (SSR) by default. I understand that mixing Server and Client Components in ...
James Likely's user avatar
1 vote
1 answer
106 views

I faced problem that some of my internal page doesn't have connection of link and google bot can not find that pages. so I want to make it detectible by adding sr-only component in page ( that page is ...
dan kim's user avatar
  • 11
0 votes
0 answers
133 views

I’m comparing two ways of rendering HTML structures with data from PHP + MySQL. Option 1: SSR (Server-Side Rendering) PHP builds the HTML and returns it directly: PHP: else if(isset($_POST["...
Be Always Mine's user avatar
0 votes
0 answers
74 views

I'd like to know how Blazors stream redering actually works. If I use SSR Blazor and the [StreamRendering] attribute, the HTML produced is sent down to browser in chunks. As I understand these chunks ...
Erik Z's user avatar
  • 4,822
1 vote
0 answers
92 views

We have an Angular application with SSR that has some custom webpack configuration. We use NX to build it, with the executors @angular-builders/custom-webpack:browser and @angular-devkit/build-angular:...
Kricket's user avatar
  • 4,205
0 votes
1 answer
57 views

I'm building an e-commerce site with Next.js 14 (App Router) and React 18. Website: https://parfumedeparis.az The issue The problem happens only on this page: https://parfumedeparis.az/az/store?page=...
Asgar's user avatar
  • 449
1 vote
0 answers
93 views

I'm on Angular v20.2 using the new SSR API to define how my routes should be rendered. I've also switched to the new AngularAppNodeEngine as seen in the docs. server.ts: import { AngularNodeAppEngine, ...
Chrillewoodz's user avatar
  • 28.5k
0 votes
1 answer
62 views

I have this in hugo.toml theme="r-hugo-theme" and this folder structure: I'm trying to follow the new template system: https://gohugo.io/templates/new-templatesystem-overview/ I get the ...
pleasebenice's user avatar
3 votes
0 answers
105 views

I'm using Visual Studio Code for an Angular 17 web app. I'm trying to implement Server Side Rendering. The module @anular/ssr is already installed, but the relative imports: import { RenderMode, ...
Rosario Di Mari's user avatar
0 votes
1 answer
144 views

I understand the SSG and SSR mode in astro and when to use them. We use SSG where dealing with static pages and SSG offers faster speed due just serving prerendered code. We will use SSR when we are ...
Siranjeevi K's user avatar
0 votes
1 answer
192 views

’m building a flight booking system in Next.js (App Router) and I want to use Server-Side Rendering (SSR). However, I’m running into some issues with API calls, cookies, and state management. What I’...
Muskan wbst's user avatar
0 votes
1 answer
44 views

---- SAMPLE Page from AI, NewValue will not update ---------- @page "/test1" Seq No Employee Name New Value ...
SteveGundeck's user avatar
0 votes
0 answers
63 views

I'm trying to use angular universal prerendering with an Ionic Angular app. To test I created a simple app with Tabs template. When I run "ng run app:prerender" the cli correctly generate ...
Davide C's user avatar
  • 996
0 votes
0 answers
50 views

I have a page roughly layouted like this: (simplified to showcase the problem) // PageContent.vue <script setup> const props = defineProps({ data: Object }); const chapters = ref(null); function ...
Kenten Fina's user avatar
1 vote
0 answers
74 views

I'm building a prototype to test Server-Side Rendering (SSR) with Webpack Module Federation (WMF) in our large app. I have two apps: App 1 – Remote App (React + Webpack) Basic Button1 component: const ...
War han's user avatar
  • 21
0 votes
0 answers
194 views

I'm upgrading my Angular Universal app from Angular 19 to Angular 20, and I noticed a major change in how SSR handles localization. In Angular 19, when building a localized SSR app, the build would ...
Ufuk's user avatar
  • 1
0 votes
0 answers
34 views

I'm working on an Angular Universal (SSR) project using @angular/cli, and during the SSR build process, I get the following error: × Index html generation failed. this.debug is not a function The ...
Zeshan Saqib's user avatar
0 votes
0 answers
79 views

I have a Nuxt 3 app where I use useStorage to persist some json data. Right now I have a Nitro plugin that runs on startup and loads the data from an external API, like this: import { ...
Alex's user avatar
  • 60
0 votes
0 answers
73 views

I’m trying to estimate how many QPS (Queries per Second) an SSR (Server-side rendering) application can theoretically handle. Let's say a request into an SSR server (like next or nuxt) and reponding ...
Chen's user avatar
  • 11
1 vote
0 answers
619 views

I just updated to new angular, used standart commands, and I get this error on build. I use ssr. X [ERROR] An error occurred while extracting routes. ENOENT: no such file or directory, open 'proj....
Борис Богуславский's user avatar
1 vote
2 answers
354 views

Note: My knowledge of JS frameworks and TS is essentially non-existent. I'm trying to create an SPA with SSG. I have a main component I'm trying to display a webAMP in. Which needs to access document. ...
user30935374's user avatar
1 vote
1 answer
93 views

I have an existing public Angular 20 website with no logins or authentication, and a few pages. The client has recently asked to introduce Search Engine Optimization features. They mostly want each ...
CaptainCsaba's user avatar
9 votes
1 answer
467 views

I have an Angular v20 app with SSR enabled just for the prerendering and I'm hosting the site statically on Github Pages. I enabled Server Side Rendering in Angular just for the Static Site Rendering ...
Blake's user avatar
  • 133
-3 votes
1 answer
413 views

I'm using Astro in SSR mode. Now I have a certain page with certain blocks (and their graphql requests to collect it's data) that are deep in the page below the fold. I thought it would be better for ...
meez's user avatar
  • 4,888
1 vote
1 answer
68 views

Use Case I'm working on an Angular SSR app (originally v16, now upgraded to v17) with a Spring Boot backend. The backend requires an Origin header on all HTTP requests (including the SSR ones), or it ...
BlackList96's user avatar
0 votes
0 answers
45 views

Is there a specification of the HTML a server has to produce so that Vue (3.x) can hydrate it? "Easy": get a Vue app server side rendered (we have successfully used Nuxt in production) &...
jonas's user avatar
  • 677
0 votes
0 answers
243 views

How to Properly Hydrate a TanStack Router + Vite SSR App Without Using TanStack Start? I'm trying to implement server-side rendering (SSR) in a TanStack Router + Vite React project without using ...
Mikołaj Paterek's user avatar
0 votes
0 answers
82 views

In AgGrid SSRM.I am using group display=multiple columns. I have a use case where I have to render the grouped data as flat view instead of nested(parent-child). How to achieve this behavior?
tejas's user avatar
  • 1
0 votes
0 answers
91 views

I want to have a seemingly simple outcome: website in two languages with URL structure like /en/blog/article1 and /de/blog/seite1 content of the page is visible to search engines for SEO purposes It'...
Ranty's user avatar
  • 3,383
2 votes
2 answers
353 views

I'm using Nuxt 3 and trying to set static meta tags for my About page using useSeoMeta. Here's the relevant code from pages/about.vue: <script setup lang="ts"> // Meta SEO const ...
sofies's user avatar
  • 37
0 votes
1 answer
46 views

ReferenceError: window is not defined at 99869 (/Users/admin/Desktop/raff/raff-frontend/.next/server/chunks/7450.js:1:2175763) at t (/Users/admin/Desktop/raff/raff-frontend/.next/server/webpack-...
Muttarab Ahmad's user avatar
0 votes
0 answers
53 views

I am setting up an Angular app that uses SSR on a Linux Debian 11.11 server with Plesk Obsidian 18.0.69. I have installed NodeJS Toolkit and I have enabled Node on a subdomain where the app will go. ...
Iñigo Gorosabel's user avatar
0 votes
1 answer
132 views

How can I deploy my astro page application into firebase hosting, is there any way to do it? I 'm using Astro page with Vue for client side, it's working great but in a deployment it's not even ...
Vignesh's user avatar
  • 11

1
2 3 4 5
99