Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
17 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 votes
1 answer
312 views

I'm building an eCommerce website using Next.js. Everything loads and navigates correctly when browsing categories or product pages using links. However, I'm running into an issue when using the ...
Sayantan Haldar's user avatar
0 votes
0 answers
78 views

I have a Next.js website where I am using client-side features like context providers. However, I am not getting the full HTML content on the initial HTML response. Instead, the content is loaded ...
Muhammad Hossain's user avatar
1 vote
3 answers
442 views

I am new to NextJS so trying to just clarify something. I am working with NextJS 15 and in a course learnt about server side rendering and client side rendering. I am working on a page, that acts like ...
TreyCollier's user avatar
0 votes
0 answers
96 views

I am trying to implement something like : <header with login related components such as showing login/logout button depending on browser content /> <server side rendered or pre rendered ...
Devasya Dave's user avatar
1 vote
0 answers
48 views

I am making an API using django and drf. My problem is my frontend devs doesn't want to have a ssr application, so I must have a way to protect my API so if a user figures out an endpoint, they can't ...
mostafa ghobashy's user avatar
0 votes
1 answer
868 views

I am just wondering if the first of the two examples is redundant since according to the NextJS docs, Client Components allow you to write interactive UI that is prerendered on the server and can use ...
Joshua Dierickse's user avatar
0 votes
0 answers
84 views

I know this has been discussed several times but I am still lacking the information, how easily someone can mess with your authentication logic on the client side. So this is my understanding of how ...
telli's user avatar
  • 9
1 vote
0 answers
904 views

I was developing my project on Next.js 14 which had frontend and backend seperated. I encountered an error named Error: Unsupported Server Component type: Module. The error appears in the page.tsx ...
Denis Ssora's user avatar
0 votes
0 answers
281 views

I'm new to nextJS and frontend technologies. I am facing a problem. I am trying to display some concerts data in two separate lists depending if they are to come or passed. When a visitor would come ...
ElTonyto's user avatar
0 votes
1 answer
110 views

Error Unhandled Runtime Error Error: Hydration failed because the initial UI does not match what was rendered on the server. See more info here: https://nextjs.org/docs/messages/react-hydration-error ...
Leon Gaban's user avatar
  • 39.4k
1 vote
0 answers
953 views

I'm currently learning next js and writing my pet project: a clothing store. And I have a question about CSR, SSR and SSG. I have this component (Hero.tsx): 'use client' import React, { use } from '...
Ivan Petrov's user avatar
1 vote
1 answer
88 views

Let's say I am using the Carousel and Carousel.Item from react-bootstrap. This can only be rendered on the client side. I want to transform the data on my server into HTML, but still I do not want to ...
Jean-Paul Abi-Ghosn's user avatar
0 votes
0 answers
43 views

I have a question for you. I tried a page with ISR, which does not work on the remote. export async function getStaticPaths() { return { paths: [], fallback: "blocking" };...
Pablo Alaniz's user avatar
0 votes
1 answer
223 views

I was trying to learn the intercepting routes in NextJs but i got this problem and i am using Nextjs 13.5.4. This is the code for counter 'use client' import {useState}from 'react' export default ...
Jash-215's user avatar
0 votes
1 answer
115 views

I have seen many solutions for sharing on LinkedIn/Facebook. But in those solutions, the content being shared is static, that is the content we are mentioning in OG tags of our index.html file. But my ...
Shriram's user avatar
  • 141
0 votes
0 answers
182 views

I have a firebase website hosted in Firebase hosting and built using Ionic Framework (Angular 8.2). The web app uses a client-side rendering (default Angular 8 behavior) and does not load any web app ...
Eyad's user avatar
  • 14.4k
0 votes
0 answers
677 views

I have encountered an issue while trying to enable server-side rendering (SSR) in my Nuxt 2 application. When I set ssr: true in the nuxt.config.js file, I receive the error message "Cannot use ...
N.M's user avatar
  • 11
0 votes
1 answer
476 views

One can render a Markdown file on a static site client-side using the code below. <div id="txt"></div> <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script&...
Ayan Mullick's user avatar
1 vote
0 answers
49 views

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 ...
Alok's user avatar
  • 10.9k
1 vote
1 answer
280 views

I am new to Nuxt and trying to make a Single Product. I wonder: How is it possible to generate multiple pages in SSR and can create a new HTML for each page? Is CSR should be created first and then ...
sara's user avatar
  • 21
1 vote
1 answer
2k views

My two apps (a CSR and an SSR version of the same app) I have created a standard Client Side Rendered (CSR) React application using "create-react-app". This is a client side only ...
se22as's user avatar
  • 2,370
12 votes
2 answers
9k views

Currently, my project has two parts, one is before login, and one is after login.  What I want to achieve is, before login needs to be fast and SEO friendly, should I choose pre-render or SSR? And ...
KeepLearning's user avatar
0 votes
0 answers
1k views

I am developing a React app with NodeJS backend. I will provide an SSR of every page of the app (which will also be cached to Redis to reduce duplicate renders) to ensure a strong SEO experience. This ...
Adam's user avatar
  • 21.2k
1 vote
1 answer
4k views

Im trying to implement a FAQ accordion SharePoint list. I managed to get the accordion working while using JSLink. Sadly the search is not working properly. I used the following code in my JSLink js: ...
Bo4711's user avatar
  • 11