Next.js

タグ「Next.js」の投稿は 7

Easy HTTPS Setup in Next.js! A Guide to Custom Domain Support

Easy HTTPS Setup in Next.js! A Guide to Custom Domain Support

2024年9月3日☕️ 2 min read

Why not easily enable HTTPS in your next project? This guide clearly explains how to set it up in Next.js and provides step-by-step instructions for creating certificates for custom domains. A must-read for anyone looking to create a secure development environment!

Improving Cold Start issues in Next.js Serverless Functions

Improving Cold Start issues in Next.js Serverless Functions

2023年5月7日☕️ 4 min read

From version 13.4 of Next.js, the app folder becomes officially available, but it seems that the Cold Start issue for serverless functions has not been resolved. In cases where caching is not possible and SSR (Server-Side Rendering) is required every time, let's render at the Edge instead of using Node.js for rendering.

I migrated my homepage from GatsbyJS to Next.js

I migrated my homepage from GatsbyJS to Next.js

2022年11月5日☕️ 4 min read

I've migrated my homepage from GatsbyJS to Next.js. GatsbyJS was the top of the SSG frameworks in my opinion, even with Next.js, but time flies, everything changed a lot. I'd like to share my thoughts about GatsbyJS and Next.js in past and now.

Use UnoCSS with Next.js

Use UnoCSS with Next.js

2022年6月7日☕️ 2 min read

After reading Anthony Fu's [Reimagine Atomic CSS](https://antfu.me/posts/reimagine-atomic-css) blog, I'm starting to want to use UnoCSS. Right now, I'm planning to migrate my HP & blog from GatsbyJS to Next.js, so I'm going to try to use UnoCSS in Next.js.

Debug Next.js+Typescript in VSCode

Debug Next.js+Typescript in VSCode

2020年12月24日☕️ 3 min read

Using `console.log` to debug frontend is easy but absolutely not effective. As `Next.js@9~` was born, debug `Next.js` + `Typescript` became possible. But unfortuately, there's only server side debug manual in Vercel's official site documentation. Let's dig a little more deeper to find out how to debug `Next.js` + `Typescript` in both `server` and `client` side.