#9 Incremental Static Regeneration Nextjs | Nextjs revalidate | SSR in nextjs

preview_player
Показать описание

incremental static regeneration nextjs, stable incremental static regeneration, incremental static regeneration netlify, vercel incremental static regeneration, incremental static generation next js,

*** Github repo ***

Please star my repo to support my work 🙏

*** Please nominate me for Github Star ***

******* Social Links ********

Please follow 🙏

Twitter - @codeytek

Github - imranhsayed

******* Other Playlist ******

==== REACT TUTORIALS ====

==== REDUX TUTORIALS ====

==== REACT WITH WORDPRESS TUTORIALS ====

==== WEBPACK TUTORIALS ====

#wordpress #staticregeneration #nextjs
Рекомендации по теме
Комментарии
Автор

Your description in this eposide is very clear. Thumbs Up

majedyafa
Автор

This really finished my mental breakdown!!! Thank you for the great explanation!!!!

hayounglee
Автор

what's the difference with between revalidate" and "unstable_revalidate"?

sikfreeze
Автор

if you are new in programming like me and you have a problem with page style not loading from Tailwind in production mode, update tailwind.config.js to :
// tailwind.config.css
module.exports = {
purge: ["./components/**/*.js", "./pages/**/*.js"],
theme: {
extend: {}
},
variants: {},
plugins: []
};

// postcss.config.js
module.exports = {
plugins: ["tailwindcss", "postcss-preset-env"]
};

zikoshriko
Автор

Oddly it updates immediately on my end, no subsequent refresh required for changes to appear 🤔

techstacker
Автор

To make it work as it says in the video I had to add the following
const client = new ApolloClient({
uri: `${process.env.NEXT_PUBLIC_WORDPRESS_SITE_URL}/graphql`,
cache: new InMemoryCache(),
defaultOptions: {
watchQuery: {
fetchPolicy: 'no-cache',
errorPolicy: 'ignore',
},
query: {
fetchPolicy: 'no-cache',
errorPolicy: 'all',
},
}
});
I use Next 13.2.4

vscopise