46 questions
0
votes
0
answers
45
views
Next.js Prerendering Error: "Invalid URL" in /_not-found Page During Build
I am deploying a Next.js project to Vercel and encountering a build failure related to the /_not-found page during the static generation process. The error appears to be triggered by an invalid URL ...
0
votes
0
answers
331
views
NextJS 15: Error occurred pre-rendering page, with redux toolkit installed
I have created an nextjs 15 app and I have redux toolkit used in it. When I run the build, it throws an error
Error occurred prerendering page "/_not-found". Read more: https://nextjs.org/...
1
vote
0
answers
521
views
How to make a vuejs+vite project SEO Friendly
I have a vuejs3+vite project. I used '@unhead/vue' library to add meta tags for each page like home, about-us, products page etc. but when i check the page source it is not showing my meta tags, ...
0
votes
1
answer
180
views
Nuxt3 prerendering without running instance?
Standard build (npm run build) doesn't start a running server, but prerender needs it, why?
Running npm run build --prerender / npm run generate also start a nuxt instance, is there a way to avoid it?
...
2
votes
2
answers
1k
views
How to prerender dynamic routes in angular 17?
Not able to prerender routes that is not defined in angular.json file
Implemented angular universal in angular 17 where routes are statically defined as:
"prerender": {
"builder": ...
-1
votes
1
answer
182
views
Why is there ?url= query param added to ISR routes with Nuxt3?
In production (Vercel), all my ISR routes have a ?url= query param added, why?
https://website.com/pages/foo become https://website.com/pages/foo?url=/pages/foo when I refresh the page (nothing when I ...
2
votes
1
answer
2k
views
Understanding Pre-rendering in Next.js Without SSR or SSG Methods
js Community,
I'm currently exploring Next.js and its rendering capabilities, and I have some questions regarding the behavior of pre-rendering in scenarios where neither SSR (getServerSideProps) nor ...
4
votes
0
answers
1k
views
use generateStaticParams() in layout.tsx NextJS 14 app directory to get dynamic rotes prerendered (PPR)
The idea is to make /[locale]/en and /[locale]/ka directories generated statically with PPR. Interesting is that without the locale, as a parameter, the / directory has PPR sign after it is build (npm ...
8
votes
10
answers
27k
views
Angular 17 window not defined
Recently after updating my angular cli from 16 to 17 I have been facing performance issues and I had no idea what is SSR and prerendering so I left them enabled. But the root cause was ssr.
After ...
2
votes
0
answers
301
views
Does Angular Hydration work with Prerender
I want to use client hydration with prerender in an Angular Universal app, but it doesn't seem to work.
I have an Angular Universal app setup and when I run npm run prerender, everything works as ...
7
votes
0
answers
2k
views
How do I pre-render my react app created by Vite?
I am trying to prerender my vite react app with the react-snap package.
I have tried the procedure of prerendering with the following code. But it doesn't get build in production (I configured GitHub ...
0
votes
0
answers
583
views
Got fetch error timeout when using getServerSideProps in production
i'm trying to popualte my page to seo using getServerSideProps and it's working fine in Development but in production it gives fetch error timeout
FetchError: request to API failed, reason: connect ...
2
votes
0
answers
348
views
Angular universal: how to prerender a routesFile in a multi configuration project
Angular universal: how to prerender a routesFile in a multi configuration project
I have an angular project that has multiple configurations
I installed the express-engine using the command
`ng add @...
1
vote
0
answers
49
views
What would be different behaviour and result on different values of page options and their combination in Sveltekit?
Sveltekit provide 3 page options givent https://kit.svelte.dev/docs/page-options
prerender
csr
ssr
These are the possible cases
Taking one at a time
e.g. where we are setting
export const prerender ...
3
votes
1
answer
815
views
`speculationrules` markup not working for prerendering pages in Chrome
Following the instructions in the Chrome blog Prerender pages in Chrome for instant page navigations, I am trying to enable pre-rendering on a website. I have added this snippet just before </body&...
0
votes
1
answer
978
views
Javascript not working when using Blazor WASM prerendering
I wanted to implement Prerendering with my Blazor WASM hosted application, but the application doesn't leave the "prerendering" mode. At least the method "onafterrender" doesn't ...
5
votes
1
answer
525
views
Angular Twitter Card and Facebook Post with dynamic routes and resources
I'm working on an Angular 14 app and I trying to make twitter cards with dynamic routes. The case is the following:
I have an online store that shows different products, obviously is the same route ...
3
votes
3
answers
1k
views
Issue with Angular pre-rendering with universal & Scully for SEO
I recently developed and published my first large angular project (I am still relatively new to angular). For better SEO I decided to look into static prerendering using both Scully and Angular ...
1
vote
1
answer
198
views
Pre-rendering with Rehydration (PRH)
I'm working on a project, which has two applications, one is an admin portal where users can customize and create their profile and other one is an application which will preview the profile user ...
1
vote
1
answer
305
views
Blazor prerendering show layout
I'm trying to implement blazor prerendering. It seems to work fine, but when I refresh the page, the layout (The container of the actual routed page) is not visible. I followed the instructions here ...
0
votes
1
answer
816
views
Quasar with prerender-spa-plugin Unable to prerender all routes
I have an error when I want to use 'prerender-spa-plugin' in my quasar application.
App • WAIT • Compiling of "UI" in progress...
[prerender-spa-plugin] Unable to prerender all routes!
...
3
votes
1
answer
12k
views
Error occurred prerendering page "/". Deployment Error Vercel | Next.js
I am trying to deploy my site via Vercel and while generating static pages, it throws the below error in logs
info - Generating static pages (0/6)
Error occurred prerendering page "/". Read ...
0
votes
1
answer
625
views
Angular Universal Pre-render : Not handling CSS media queries for Desktops & handheld devices with landscape orientation correctly
I integrated Angular Universal with my existing Angular 10 web app to generate a pre-rendered version for SEO purposes. I detect when a user views the web app in landscape mode(using media query) on ...