일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Ethereum
- REACT
- SSR
- node.js
- error
- express.js
- web
- 삶
- Interface
- JavaScript
- Props
- middleware
- blockchain
- hardhat
- nextJS
- concept
- API
- useState
- HTML
- tailwindcss
- bitcoin
- CSS
- solidity
- CLASS
- graphQL
- evm
- 기준
- typeScript
- built in object
- Redux
- Today
- Total
목록nextJS (33)
ReasonJun
Automatic Static Optimization (ASO) is a feature of Next.js that automatically pre-renders pages that do not have any blocking data requirements. This means that the pages will be rendered to static HTML at build time, which can improve the initial loading performance of your application. ASO is enabled by default in Next.js, so you do not need to do anything to use it. However, there are a few ..
Lazy loading in Next.js is a feature that allows you to defer the loading of components and libraries until they are needed. This can improve the initial loading performance of your application by decreasing the amount of JavaScript that needs to be loaded. There are two ways you can implement lazy loading in Next.js: Using Dynamic Imports with next/dynamic Using React.lazy() with Suspense Dynam..
What is Draft Mode? Draft Mode is a feature that lets you switch from static rendering to dynamic rendering for specific pages that fetch data from a headless CMS. Static rendering means that your pages are pre-rendered at build time and served as static HTML files. Dynamic rendering means that your pages are rendered on-demand at request time and fetch the latest data from your data source. Sta..
SWC (Speedy Web Compiler) is a fast JavaScript/TypeScript compiler that is used in Next.js to optimize the build process and improve the performance of Next.js applications. It is a popular alternative to the Babel compiler, known for its impressive speed and compatibility with modern JavaScript and TypeScript syntax. It is made in RUST language based on parallel processing, so it is faster than..
The error message "Module not found: Can't resolve 'fs'" in Next.js typically occurs when you are trying to import the 'fs' module, which stands for "file system," in a client-side (browser) context. However, the 'fs' module is a built-in Node.js module that is not available in the browser environment. Next.js is designed to be a framework for building server-rendered React applications, and it ..
Here are some examples of pages that are good candidates for SSG: Blog posts: Blog posts are typically static content that does not change frequently. SSG can be used to generate blog posts at build time, which can improve performance and ensure that your blog posts are indexed by search engines. Portfolios: Portfolios are another type of static content that can benefit from SSG. SSG can be used..