일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- error
- web
- built in object
- 기준
- useState
- SSR
- API
- concept
- typeScript
- Interface
- 삶
- Redux
- node.js
- evm
- REACT
- CLASS
- graphQL
- Props
- blockchain
- nextJS
- solidity
- HTML
- bitcoin
- JavaScript
- express.js
- tailwindcss
- Ethereum
- middleware
- hardhat
- CSS
- Today
- Total
목록전체 글 (374)
ReasonJun
Absolute Imports Absolute imports in Next.js allow you to import modules from the root of your project. This can be useful for organizing your code and making it easier to find the modules that you need. To use absolute imports in Next.js, you need to add the following line to your tsconfig.json file: { "compilerOptions": { "baseUrl": "." } } This will tell Next.js to treat all imports as if the..
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..
ESLint is a JavaScript linter that helps you write better code by enforcing code style and best practices. It is a popular tool that is used by many JavaScript developers. ESLint is a static analysis tool, which means that it analyzes your code without actually running it. This makes it a very fast tool, and it can be used to lint large codebases. ESLint is configured using a configuration file...
Utterances in the GitHub library are a lightweight comments widget built on GitHub issues. They allow you to add comments to a GitHub page that are linked to a specific issue on GitHub. This makes it easy for people to track discussions about a particular issue, and it also helps to keep the discussion organized. Utterances are easy to use. To add an utterance, you simply need to add a comment t..
Robots.txt and sitemap are two important files that are used to control how search engines crawl and index your website. Robots.txt is a text file that tells search engine crawlers which pages on your website they can and cannot crawl. It is a simple text file that is placed in the root directory of your website. Sitemap is an XML file that provides a list of all the pages on your website, as we..
The navigator.clipboard.writeText() method is a part of the Clipboard API, which allows you to access and manipulate the clipboard on your web browser. The writeText() method specifically allows you to write a string of text to the clipboard. The writeText() method takes a single parameter, which is the string of text that you want to write to the clipboard. The method returns a Promise, which w..
MDX (Markdown for the component era) is a syntax extension for Markdown that allows you to embed React components in your Markdown documents. This makes it possible to create rich and interactive documentation that combines the best of both worlds: the readability and flexibility of Markdown with the power of React. MDX is a powerful tool that can be used to create a variety of different types o..