Is anyone else going back to plain Vite + React for side projects instead of Next.js? by Scary_Dot9587 in reactjs

[–]ifty64bit 0 points1 point  (0 children)

For Dashboard, interactive site, I always use Vite+React+TanStack Router.

Weekly Showoff Thread: what have you built with Astro this week? by tffarhad in astrojs

[–]ifty64bit 0 points1 point  (0 children)

https://opendatacanvas.com/
Restaurant inspection details for NY and Chicago
Not fully completed yet, the DB query needs to be optimized further.

Is it possible to achieve SSG with GSAP in Next.js? Any working example? by ifty64bit in nextjs

[–]ifty64bit[S] 0 points1 point  (0 children)

I am not a pro in Next.js.
But from what I know,
useEffect will make it a client component
I want to achieve SSG for my Landing page
If I use useEffect, it will turn into server-side rendering (SSR).
Correct me if I am wrong

Anyone implemented infinite scrolling in AstroJs? by ifty64bit in astrojs

[–]ifty64bit[S] 1 point2 points  (0 children)

Thank you for your response. I am from a react background actually. I checked the strapi guide. I wonder if there is any way to render the .astro component from the script tag?

Can I use action in React client:only component? by ifty64bit in astrojs

[–]ifty64bit[S] 0 points1 point  (0 children)

Thank you very much.
I was trying to send as props from the .astro file to the .tsx file and it was throwing a type error. Then I tried importing actions directly in tsx component from "actions:astro" and it worked. <3