👉 NEW React & Next.js Course: bytegrad.com/courses/professional-react-nextjs
@ederross Жыл бұрын
Man.... You are a genius! Saved my project...
@arhamkhawar4240 Жыл бұрын
You can also dynamically import a component that e.g uses window object like this: import dynamic from 'next/dynamic'; const ReactQuill = dynamic(() => import('react-quill'), { ssr: false }); Then you can use ReactQuill in the JSX.
@RahulinWeb3 Жыл бұрын
noice
@DavidWTube9 ай бұрын
Came here to say this.
@samyakpiya Жыл бұрын
1:50 I didn't know we couldn't put an image tag inside of an anchor tag or next.js link tag. How would we otherwise make it so that an image is also a clickable link then? Great content btw!
@bernardopapini Жыл бұрын
Thank you, guy. With 50 seconds of your video I could solve my bug. You're a hero!
@adriancmiranda11 ай бұрын
You just saved my project. Thank you, dude!
Жыл бұрын
These are my baby steps... on Next JS... thank you!!
@kxmode8 ай бұрын
Regarding the first cause, the reason this happens is because block-level elements, such as , , and so forth, are blocks with defined "space" (even if the space is 0 px by 0 px) and cannot be placed inside an inline element (an HTML element with no defined space). This is akin to placing an object inside a void. :)
@tranquillityEnthusiast Жыл бұрын
Suppresshydrationwarning is not working in latest nextjs
@hm.till978 ай бұрын
I have that exact issue because of a browser extension. I think that just disabling the extension doesn't solve the problem. If one of my users uses an extension like that an gets send error screens that they don't understand that makes a horrible UX. Does anyone know if there is any way to disable or catch the errors?
@AbishaiKashif-jz6ln3 ай бұрын
when I put a div inside a Link tag it provides me with hydration error
@lakshayjain9337Күн бұрын
in html, cannot be a descendant of . I am getting this error Please help
@uPhanBaАй бұрын
I have a funny question: I switch pages like a normal person and everything is fine, but when I'm like "programmer switches to other pages quickly for 0.2s, the Hydration error appears", the question is: does it have this Hydration error or is it because I switch pages too fast?
@AbhishekKumar-lp7wy2 ай бұрын
I am getting this error in default (npx create-next-app@latest) nextjs 15.0.1 version how to fix it??
@aaryanbhavsar3779Ай бұрын
bro did you find the error for Next.js 15 ?
@shivampuri6568 Жыл бұрын
That isClient method worked for me! Thanks ❤
@liwen72527 ай бұрын
why not just checking if the `window` is undefined or not?
@wesley2510111 ай бұрын
Thank you man, you helped me a lot!
@siphamandlambokazi3318 ай бұрын
Thanks alot my brother, my issue was caused by MUI and useEffect trick work
@arturhonores914110 ай бұрын
Muchas gracias!! el mejor video sobre el tema
@kdurkiewicz Жыл бұрын
Great tips! Thank you!
@josatienganh8 ай бұрын
Thanks a lot! It's so helpful! ❤
@fazlehadiazmat7g8039 ай бұрын
fantastico mi amigo!
@alexzendersen Жыл бұрын
thx mate! that's work!
@lukecartwright613 Жыл бұрын
When using Links in Next JS the tailwind classes don't get passed to the anchor tag. So a solution is to add an anchor tag inside of a Link and adding the className to the sub anchor tag. Is there another solution?
@Mitul-lk4mq11 күн бұрын
it's work thanks
@dorrakadri1474 Жыл бұрын
thank you it was the color picker extension for me -.-
@_micilo3451 Жыл бұрын
thank you so much!
@meka4996 Жыл бұрын
Superman! Thanks
@artemzhuravlenko9955 Жыл бұрын
Thank you! That is works!
@hardikmaind9833 Жыл бұрын
You are amazing....
@thecatalystdev6438 Жыл бұрын
Great man
@carlosrofts5230 Жыл бұрын
thanks!! u save me 💚
@gauravsinghtangariya9 ай бұрын
I opened this video and found the solution at 1:07