4,988 questions
0
votes
0
answers
14
views
Problems integrating MudBlazor with existing Blazor login page
I've been trying to enhance my Blazor Identity login page with MudBlazor components. I've encountered multiple errors that prevent it from working:
SSL Certificate Error - When I first added ...
0
votes
0
answers
15
views
How to optimize heavy _app.tsx in Next.js 13 (Pages Router) with large SEO config, preloader, and widget scripts?
I’m working on a Next.js 13 project using the Pages Router, and my _app.tsx file has grown into a very large and overloaded entry point. It handles a lot of global logic, including:
A huge SEOConfig ...
-1
votes
0
answers
25
views
My Mesh visualiser code takes so long to load the mesh files to the borwser , is SSR a solution? [closed]
I’m working on a 3D mesh viewer using .obj and .mtl files, but I’m running into performance issues — the browser takes a long time to load and render the mesh files, and it’s using a lot of my local ...
-1
votes
0
answers
36
views
styled.nav is not a function. I am activating ssr in my inertia laravel app using styled components, but I'm not sure what is going wrong [closed]
I have tried creating a server-style sheet with ServerStyleSheet in my ssr.tsx file. Vite config exists and is pointing to it, Babelrc is in my root as well, with the Babel plugin styled components ...
-2
votes
0
answers
69
views
How to render <App/> on nodejs server side? [closed]
Given this server.ts code:
import 'ignore-styles';
import register from '@babel/register';
import express from "express";
import fs from "fs";
import path from "path";
...
0
votes
0
answers
22
views
EditorJS in NextJS is not defined
I'm using nextjs 15 with EditorJs and encountered this error
Error: Element is not defined
I followed the documentation and written
the Editor.tsx comp
const Editor = () => {
useEffect(() => {
...
0
votes
0
answers
13
views
Why does SSR fetch fail on Dokploy but work locally and on Vercel?
import React from "react";
import BlogPageClient from "./BlogComponents/BlogPageClient";
import { HERO_1 } from "@/public";
import { PageTitle } from "@/app/common&...
0
votes
1
answer
33
views
Render Deployment Failed
I deployed my app to render but got the error :
throw new ERR_MODULE_NOT_FOUND(packageName, fileURLToPath(base), null);
^
Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'express' imported ...
1
vote
2
answers
86
views
How to check when window becomes available?
I am new to SvelteKit and I am not familiar with SSR. I have recently learned that window is only defined after the client-side has been loaded, which can be determined with the onMount hook.
But here'...
0
votes
0
answers
38
views
Search engine result pages not displaying correct titles and descriptions [closed]
We currently have a React application connected to a Craft CMS. We’ve been trying to solve some SEO issues we’ve been running into where our results in search engine result pages have incorrect ...
0
votes
0
answers
46
views
After adding ssr ( angular Universal ) to angular 19 ngmodule approch. Angular Universal SSR works fine, but CSR not working
After the initial render with Server-Side Rendering (SSR), my Client-Side Rendering (CSR) is not functioning properly. I am using the NgModule approach, and my project was previously running on ...
1
vote
0
answers
35
views
Using mongodb in Angular SSR
I'm migrating code to a new Angular 19 project using hybrid rendering (SSR + client-side). When rendering on the server, I want to query MongoDB directly instead of using an API. However, I'm ...
-1
votes
0
answers
35
views
How to build e2e test on SSR component of next.js [duplicate]
I have an SSR component which is making an external api call on click of button, from server side and not from client side.
Is there any way to intercept the request generated from SSR component? I ...
0
votes
0
answers
28
views
Angular 18 SSR shows outdated data and doesn't update after UI changes
I'm using Angular 18 with SSR for my application. In the production version, my main page that displays data from a table shows outdated information. Additionally, when I delete items via the UI, ...
0
votes
1
answer
51
views
Why are components' imports not loading in Angular 19 SSR?
I've run into a problem that my header's imports are not loaded properly in SSR.
In my Angular 19 application the app.component.html includes a static <app-header> component that should exist on ...