4,920 questions
0
votes
0
answers
44
views
Why does my Next.js Page Router app show periodic CPU spikes above container limits after deployment?
The chart shows CPU usage over time for a container running a Next.js 12 Page Router application.
I’m running a Next.js 12 application using the Page Router with SSR (getServerSideProps) in production....
0
votes
0
answers
82
views
Angular SSR doesn't serve HTML
I added the Angular SSR boilerplate code to my existing Angular 21 project by using the schematics ng add @angular/ssr which generated the following files:
server.ts
main.server.ts
app.module.server....
1
vote
1
answer
74
views
Redirect on 401 resonse from api using $fetch in Nuxt
I'm building a Nuxt app that functions as a frontend and BFF (proxy) for an external API.
The external API responds with a 401 if the token is missing, invalid or expired. In this case the Nuxt api ...
0
votes
0
answers
94
views
Nuxt 3 @nuxt/image custom provider with server-side URL signing - how to avoid hydration mismatch and double fetches?
I'm building a Nuxt 3 application using @nuxt/image with a custom provider for imgproxy. Imgproxy requires URLs to be signed using HMAC-SHA256 with a secret key and salt.
The Problem
I need to sign ...
0
votes
2
answers
195
views
Angular 21 SSR with app-shell and withShell
I recently implemented SSR in my Angular 21 application using:
ng add @angular/ssr
Usually, for browser rendered Angular apps, I place a small loading indicator into my app-root to reduce the time ...
Advice
0
votes
1
replies
67
views
How exactly does SSR work when it comes to lazy loaded components?
I am reading this NextJS documentation, but there is something I don't understand: What's the point of SSR when it comes to lazy-loaded components? SSR is designed to return the rendered HTML ...
0
votes
0
answers
83
views
How can I perform SSR with Tanstack Start
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-...
0
votes
0
answers
71
views
Why does a module-level Zustand store cause a memory leak in Next.js App Router SSR?
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 ...
Advice
0
votes
2
replies
41
views
Silent SSO with Auth0 in legacy Spring MVC (SSR) app with LDAP login and Spring Security 5
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 ...
0
votes
1
answer
28
views
Nuxt Seo from external api ssr
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 {...
1
vote
1
answer
116
views
Blazor using InteractiveServer (for admin area /admin/*), and purely static SSR for user facing site?
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 ...
0
votes
1
answer
449
views
Using TailwindCSS v4 in Bun SSR - how can I integrate it?
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 ...
1
vote
0
answers
64
views
How to setup Angular SSR+localize with subdomain-based locale resolution
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": {
"...
Best practices
0
votes
0
replies
62
views
Why does my Next.js app’s performance drop significantly when using dynamic routes with large datasets and server-side rendering (SSR)?
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 ...
0
votes
0
answers
78
views
Why does generateStaticParams() in Next.js App Router make a page static (SSG) instead of server-rendered (SSR)?
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 ...