TAGS
Implementing blog search functionality with pagefind
Add search functionality to your blog quickly and easily with pagefind, a client-side search library for static websites.
Server Actions are not running intermittently
Analyzing and resolving an issue where Server Action callbacks were intermittently not firing in Vercel's serverless environment.
Server Component Rendering Strategy
Understand the rendering strategies and caveats of the Server Component, and also cover issues that can arise when using it with Parallel Routes and how to resolve them.
Why you can't use variables in middleware's matcher
Let's analyze the source code of Next.js to understand the issues that arise when using variables in the Next.js middleware matcher and what causes them.
Issues with static rendering
I ran into an issue with static rendering in Next.js that was working fine, but wasn't working as expected.
Using Server Components inside Client Components
In Next.js, all components work on the server by default. Let's see how we can use this inside client components as well.