Next.js Discord

Discord Forum

render date on server

Answered
Cape lion posted this in #help-forum
Open in Discord
Cape lionOP
i am using nextjs v16 and i want to render date on server, is that possible?
what i am trying to do:
<p>© {new Date().getFullYear()} Phadonia</p>


i want this to work even if the user as js disabled in their browser
Answered by B33fb0n3
you can add "export const revalidate = 86400". Like that the page will be recreated every day so you are sure, that it changes
View full answer

5 Replies

@B33fb0n3 https://tryitands.ee/
Cape lionOP
it works... but how do i prevent it from becoming static
@Cape lion it works... but how do i prevent it from becoming static
you can add "export const revalidate = 86400". Like that the page will be recreated every day so you are sure, that it changes
Answer
happy to help