A few updates: - Next.js 10 introduced an Image component and built-in image optimization: nextjs.org/docs/basic-features/image-optimization - If you don't want to manage meta tags yourself, you can use a library like `next-seo`: www.npmjs.com/package/next-seo
@TheDjTotzy4 жыл бұрын
Thanks for the update Lee!!
@OsamaAhmaro4 жыл бұрын
Thanks for the update, can you make a video doing same setup using next-seo?
@caleblovell4 жыл бұрын
Really appreciate this, Lee! Super helpful. I had no idea there was a favicon genereator site either. Amazing. Thanks!
@c-cg3 жыл бұрын
Great video Lee, the topic of SEO and performance has always intrigued me about the web. Very informative!
@AllanLeonardJr4 жыл бұрын
Thanks for the great content! I'm coming to NextJS from the create-react-app world so this is helping me put the pieces together. #subscribed 😎
@pawekoaczynski45053 жыл бұрын
great video, you've mentioned a lot of useful tools, although I wish you linked them in the video's description
@TiagoDiass24 жыл бұрын
Man, what a good content, Thank you very much for teaching this, I'll share it with my friends that are learning Next!!
@yashchauhan57103 жыл бұрын
Next image component doesn't optimize svg image ? I tried it with png n jpg I get webp on my websites and reduced size but it's not with svg saldy
@kurniawanhendra26834 жыл бұрын
Fu***** awesome.... God blessed you Rob
@saisreenivassonthena99014 жыл бұрын
Hey Lee, I didn't get the usage of page.js in your repo, can you tell us a bit about using it, ? BTW, the whole course is awesome!
@leerob4 жыл бұрын
Page could also be called "Layout" or similar. It's just a way to componentize shared pieces between different pages. Thank you!
@saisreenivassonthena99014 жыл бұрын
@@leerob can you upload the code in your repo? pls Thank You
@Felipe-zl1rj4 жыл бұрын
This is very good content. Subscribed!
@vanshshah77812 жыл бұрын
Thank you
@not_enoughmana3 жыл бұрын
"GIF or JIF if you're a psycho" 😂
@isaacfrost97984 жыл бұрын
So helpful, thanks.
@techstacker53614 жыл бұрын
Hi Lee, love your work! Question: I noticed that you don't use image optimization on the latest version of Mastering Next github.com/leerob/mastering-nextjs/. You also don't seem to optimize images on your blog, leerob.io - I'm just curious if there's a good reason, are you working on a better approach for handling images? :-)
@leerob4 жыл бұрын
I have ImgBot running on my blog and for the new Mastering Next.js site, I manually optimized the images with ImageOptim before I pushed them to GitHub. However, there's a new Image component being built into Next.js to will also support image optimization that should launch soon!