That's awesome, thank you so much, please make a full course or crash course about next js. 👍
@shayankhaz2 ай бұрын
The revalidate trick was awesome dude
@davx19926 ай бұрын
Man, thanks for this video, was struggling with revalidation, this worked! Thanks!
@yfullstackhub12 күн бұрын
You showed revalidation part and that's great! Revalidation of sitemaps not shown in documentation.
@RaddyDev11 күн бұрын
That's true. I think that it's because revalidate is a caching feature. Maybe they could mention it
@krk1012 ай бұрын
Thanks, man. Really appreciate your help.
@antoniobologna9 ай бұрын
Great video. Couple of questions: 1. What is the advantage of this as opposed to using nested sitemaps, for example `blog/post/sitemap.ts`, where you have a `blog/post/[id]/page.tsx`? 2. What about thousands of records, (there's a limit of 50K URLs for sitemaps) my concern is that for big pages this will take too long for a sitemap to generate, and also do you just get up to 50,000 records based on time creation? Cheers :D
@RaddyDev9 ай бұрын
A flat sitemap is just easier to create and maintain and it's perfect for smaller sites. In your case a nested sitemap might be the way as it better represents your hierarchical structure. They both have their advantages and disadvantages. I haven't tried compiling thousands of records and I can imagine that it would be painful especially if the data comes from a CMS. Are they all in markdown files? It would be a cool experiment to see how long it takes to do 50,000 records. You could ask on Reddit to see what other people are experiencing
@polatbey72619 ай бұрын
thank you so much
@SitepowАй бұрын
great thk man.
@dananjayachathuranga71134 ай бұрын
Thnak you and subscribed !
@sahilanand306 ай бұрын
thanks really helpful
@TheKobraIRAQ11 ай бұрын
What theme are you using for vscode ?
@RaddyDev11 ай бұрын
Color Theme: Dracula & File Icon: Namo Dark for Visual Studio Code
@okao084 ай бұрын
So sitemap can be very huge?
@eshwargetenv12 ай бұрын
@@RaddyDevhow to catche it?
@RaddyDev2 ай бұрын
How big is your sitemap? It's cached as default.
@milanpoudel72126 ай бұрын
will this work in pages router or not?
@RaddyDev6 ай бұрын
I am not sure about the page router. Have a quick look into the official documentation. I am sure that they will have something there
@md.fakweruddinmazumder90632 ай бұрын
Next.js (14.2.3) out of date (learn more) Error: Page "/sitemap.xml/[[...__metadata_id__]]/route" is missing exported function "generateStaticParams()", which is required with "output: export" config. I am getting this error. Please help me.
@RaddyDev2 ай бұрын
You can use generateStaticParams() when it comes to pages, but for the sitemap you need to use the "export default function sitemap()" function. Unless you want to do it as a page with a custom route handler? If you need to create multiple dynamic sitemaps you can use generateSitemaps() together with sitemap(). Normally you only need to use generateSitemaps when you have more than 50,000 URLs and you need to split them per sitemap as that is the Google max number.
@doylace7 ай бұрын
Not really working on my end I am using the next js 14
@RaddyDev7 ай бұрын
It should work on 13 and 14 as long as you are using the App router. Do you get any errors?
@MikaelMeira5 ай бұрын
Module parse failed: Unexpected token (13:86) | | if (typeof handler !== 'function') { > throw new Error('Default export is missing in "C:\\Users\\cka\\OneDrive - Organizações\\Área de Trabalho\\projeto\\app\\sitemap.ts"') | }
@RaddyDev5 ай бұрын
It could be the sitemap() function. It should look like this: export default async function sitemap() {
@MikaelMeira5 ай бұрын
@@RaddyDev Resolved: Friend, I managed to solve it after racking my brains a lot, my project was on the Desktop and One Drive, I removed it and put it in the Downloads folder, it worked perfectly!!