Mantine UI - is there a point to use nextjs?
Unanswered
Chilean jack mackerel posted this in #help-forum
Chilean jack mackerelOP
I'm new to nextjs and going to use mantine for my ui so all of my app will be client-side components if I understand correctly (https://mantine.dev/guides/next/#server-components). At this point is there any point to using nextjs if my whole app will be client-side?
My gut feeling is yes, because I would still like to fetch data on the server-side and pass it to the client components if that's possible, to avoid data API calls from the client components
Any insights here would be appreciated, thanks
My gut feeling is yes, because I would still like to fetch data on the server-side and pass it to the client components if that's possible, to avoid data API calls from the client components
Any insights here would be appreciated, thanks
3 Replies
My gut feeling is yes, because I would still like to fetch data on the server-side and pass it to the client components if that's possible, to avoid data API calls from the client componentsThis is correct
later on you'd probably need data mutations, and obfuscation of your backend with Next.js backend
Next.js is a fullstack solution not just a React/Vite replacement