Static Site Generation or SSG with NextJS

Pro Members Only

This lesson is available if you have an active subscription.

Alternatively, some member might be able to gift it to you.

If you already have a subscription, you can sign in.

Professional NextJS Lessons

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
54.Created High Quality Social Media Previews
⏱️ 7:38

Static Site Generation or SSG with NextJS

Subscription Required

You must have an active subscription to access this content.
If you already have a subscription, you can sign in.

Static By Default

We know that NextJS automatically tries to optimize our app by marking routes as static when it detects that they will not change over time. It renders such content only once during build time this would be an example of the SSG (Static Site Generation) rendering strategy.

Static vs. Dynamic Pages

We’ve already seen an example of this in our lesson on static vs dynamic rendering. These concepts actually map to SSG vs SSR.

  • Static: Static Site Generation (SSG)
  • Dynamic: Server Side Rendering (SSR)

Here is an example of a static (no dynamic api use) vs dynamic page (uses fetch with cache: 'no-store').

app/static/page.tsx
app/dynamic/page.tsx
export default async function Page() {
return <div>This is an example of a Static Page</div>;
}

Dynamic Route Segments

We can even take the nextjs ability to generate static pages to the next level and enable it for dynamic route segments by informing nextjs about all the paths that the route might support.

For this the dynamic route page should export generateStaticParams which must return an array of objects where the property names must match the param names for the route.

This is demonstrated in the below example.

app/product/[name]/page.tsx
import styles from "./page.module.css";

export default async function Page({
params,
}: {
params: Promise<{ name: string }>;
}) {
const { name } = await params;
const content = await fetch(
process.env.NEXT_PUBLIC_API_URL + "/product" + `/${name}`
);

const details = await content.json();
const { title, icon, description } = details;

return (
<div className={styles.root}>
<aside className={styles.icon}>{icon}</aside>
<h1 className={styles.title}>{title}</h1>
<p className={styles.description}>{description}</p>
</div>
);
}

export async function generateStaticParams() {
const response = await fetch(process.env.NEXT_PUBLIC_API_URL + "/products");

const { productNames } = (await response.json()) as {
productNames: string[];
};

return productNames.map((name) => ({ name }));
}
javascript
typescript
react
playwright

Enjoy free content straight from your inbox 💌

No spam, unsubscribe at any time.

Transcript

00:00

We know that next year's automatically tries to optimize our app by marking routes a static when it detects that they will not change over time. It renders such content only once during build time. And this would be an example of the SSG rendering strategy and we saw an example of that in a lesson on static versus dynamic rendering. This is a page that does not depend upon any dynamic APIs and therefore next years will render this statically at build time. However, if you're loading the content of a page from an external solution like an external content management system, we can mark the fetch request to load that external content with cache no store.

00:33

Once we have the content response, we can render it within the user interface. Next years, we'll automatically notice that this API call is being made with no store and therefore mark this page as dynamic and opt out of static site generation for this route. This is something that we've already looked at in a lesson on static versus dynamic rendering, but the reason of mentioning it again is to highlight it in the concept of SSG. And we've seen this output before. Static essentially means SSG or static side generation, and dynamic means SSR or server side rendering. Note that next year's caches fetch requests by default. So if you don't pass in the no store config option,

01:07

the next J will assume that this fetch request is going to always return the same response and therefore our page will no longer be dynamic and will be marked for static rendering. And we can verify that from the developer tools. The route has now been marked for static site generation. You can even take the next year's ability to generate static pages to the next level and enable it for dynamic route segments by informing next years about all the parts that the route might support. To demonstrate this, we have a dynamic page that accepts a product name in its route parameters. Because this route depends upon a past in parameter, next years will automatically mark this route

01:39

as dynamic by default. Within our page file, we export a simple component that takes the product name as a parameter and then uses it to fetch the details for the product from an external API. Once we have the product details, we render them out in a simple user interface and while we are using a product page as a demonstration, the same concept applies to various other application patterns. For example, blog posts note that we only created a single page route. However, it might service a number of different requests, for example, apple or orange or banana. And that is the reason why dynamic routes result in dynamic

02:12

pages because next J doesn't actually know what the final routes might be. Fortunately, a page route can export a method called generate static pers, which can be used to tell next J the different pers that the route supports. Next J, we'll run this function at build time to discover the different route segments. For this example, we make an API call to our content management system to get the different product names that our content has been configured for. Generate static pers must return an array of objects where the property names in the objects must match the per names for the route for our page, the per is called name. So we return an array

02:46

of objects containing the name property to verify that next J picks it up properly. We done a next build and here you can see in the build output that for the out product name next JS picked up that they might be product apple, product Orange, or product banana because those were the values returned from our CMS. And then for these values, next JS generated static HTMO for these routes. These HTMO files are written to disc and can be deployed to A CDN, which is something that a website hosting system like Versa will do by default.

Professional NextJS

Professional NextJS

1.Course Intro
free
⏱️ 2:05
2.Get Setup
free
⏱️ 2:05
3.Project Template
free
⏱️ 5:45
4.Introducing FullStack React
free
⏱️ 4:57
5.App Router Reference
free
⏱️ 7:08
6.NextJS Server vs. "use client" Rendering
⏱️ 5:01
7.Nesting Server and Client Components
⏱️ 8:51
8.Client Only Components
⏱️ 3:48
9.Global CSS in NextJS
⏱️ 6:30
10.CSS Modules and SASS
⏱️ 4:15
11.Tailwind CSS
⏱️ 5:17
12.NextJS Custom Fonts
⏱️ 4:08
13.Static vs Dynamic Rendering
⏱️ 4:55
14.NextJS Link Component
⏱️ 3:20
15.NextJS Link Prefetching
⏱️ 5:49
16.Navigation Scroll with Link
⏱️ 2:02
17.Replace Navigation History
⏱️ 1:35
18.NextJS Image Component
⏱️ 7:01
19.Dynamic Image URLs
⏱️ 5:34
20.Safe Colocation with Private Folders
⏱️ 2:12
21.NextJS Route Groups
⏱️ 3:07
22.Dynamic Routes
⏱️ 5:37
23.NextJS API Routes
⏱️ 6:03
24.NextRequest and NextResponse
⏱️ 2:41
25.Cookies in API Handlers
⏱️ 4:25
26.React Suspense Simplified
⏱️ 2:23
27.Power of Suspense Boundaries
⏱️ 3:52
28.use Promises
⏱️ 3:24
29.Stream Promise Results from Server to Client
⏱️ 3:03
30.use Requires a Cached Promise
free
⏱️ 2:30
31.Suspense Error Boundaries
⏱️ 4:42
32.React Server Functions
⏱️ 4:50
33.Server Actions for Powerful Forms
⏱️ 5:35
34.useActionState to Simplify Form Actions
⏱️ 6:38
35.React Serializable Types
⏱️ 2:42
36.Create Dynamic Images with NextJS ImageResponse
⏱️ 5:54
37.Deploy NextJS Application to Production
⏱️ 3:51
38.NextJS Environment Variables Masterclass
⏱️ 3:50
39.Deploying and Managing Environment Variables
⏱️ 4:38
40.Using Databases for Dynamic Server Side State
free
⏱️ 7:34
41.Mastering NextJS Layout Files
⏱️ 4:54
42.Client State Management with NextJS
⏱️ 3:48
43.Client State Management In Action
⏱️ 8:04
44.Using Client State Management Libraries
⏱️ 5:25
45.Detecting Server vs Client Runtime and useEffect
⏱️ 4:33
46.Demystifying ISR vs SSR vs SSG
⏱️ 3:07
47.Static Site Generation or SSG with NextJS
⏱️ 3:16
48.Incremental Static Regeneration (ISR) Simplified
⏱️ 2:51
49.API Routes Caching with NextJS
⏱️ 3:05
50.Reference Guide to Caching for Modern NextJS
⏱️ 2:47
51.Setup a BASE_URL for client and server
free
⏱️ 2:54
52.Creating a sitemap.xml
⏱️ 3:29
53.Provide metadata with NextJS
⏱️ 6:54
54.Created High Quality Social Media Previews
⏱️ 7:38