일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- CSS
- CLASS
- error
- Ethereum
- Redux
- evm
- 기준
- concept
- express.js
- SSR
- middleware
- typeScript
- blockchain
- HTML
- graphQL
- solidity
- 삶
- tailwindcss
- API
- Interface
- Props
- bitcoin
- web
- nextJS
- useState
- node.js
- built in object
- hardhat
- REACT
- Today
- Total
목록전체 글 (373)
ReasonJun

Presentation : https://www.canva.com/design/DAFzlnBpAHg/h1Fkw2wP2vyWb4-aOE-jzw/edit?utm_content=DAFzlnBpAHg&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton Report : https://candle-keyboard-dd4.notion.site/AAVE-eb5cad920ac5457994ca156c046e9419?pvs=4

1. Real estate can be bought and sold more efficiently and safely through tokenization of real assets rather than paper title deeds that can be lost or altered. This is because all information is recorded in a distributed ledger, so anyone can track ownership history and previous transactions to verify authenticity. 2. Currently, purchasing real estate takes anywhere from a few weeks to several ..

Product : https://www.pets-mas.com/ 메리 댕냥스마스 우리집 댕냥이로 크리스마스 카드를 만들어 보세요! www.pets-mas.com Video : https://youtu.be/mBvLnZIfWoA problems : 1. filter routing problem : => I set filtering in the layout for each page, but a loop phenomenon was discovered. 2. Libraries that worked normally on desktop did not work on mobile. 3. Depending on the mobile software version, some operations may not work. 4...

Problem : I'm using Nextjs 14 and wanted to utilize the layout folder to automatically load data when accessing the web. Why? This is fine when sending requests from client to server, but when communicating from server to server in Nextjs, the difference between http/https causes problems. Can occur while the Next.js app is establishing an SSL/TLS secure connection. Typically, this error occurs ..
https://codevoweb.com/setup-and-use-nextauth-in-nextjs-13-app-directory/ Setup and Use NextAuth.js in Next.js 13 App Directory - CodevoWeb In this tutorial, I’ll walk you through setting up authentication in your Next.js 13 app directory using NextAuth.js. It’s worth noting that while we use... codevoweb.com https://github.com/vercel/next.js/discussions/50511 Why does my NextAuthJS discord login..
upload setting rule : https://support.cloudinary.com/hc/en-us/articles/202520662-How-can-I-bulk-upload-my-images- method: https://cloudinary.com/blog/guest_post/upload-images-with-react-dropzone Upload Images with React-Dropzone This post describes how to upload images using the react-dropzone package. We’ll go through the implementation process by building a basic Next.js application that lets ..

Error : Why : While rendering your application, there was a difference between the React tree that was pre-rendered from the server and the React tree that was rendered during the first render in the browser (hydration). Solution : import { useState, useEffect } from 'react' export default function App() { const [isClient, setIsClient] = useState(false) useEffect(() => { setIsClient(true) }, [])..
When : When implementing login using prisma and nextauth. Error message : [next-auth][error][adapter_error_getUserByAccount] https://next-auth.js.org/errors#adapter_error_getuserbyaccount Invalid `prisma.account.findUnique()` invocation: prisma code : generator client { provider = "prisma-client-js" } datasource db { provider = "mysql" url = env("DATABASE_URL") // Add this relationMode = "prisma..
What happened? In the case of ts-node, ts was compiled using the commonJS method. Therefore, an error occurs when you try to run a ts file with ts-node in the app or src subfolder of nextjs, which is compiled with esNext. Error : https://github.com/TypeStrong/ts-node/issues/935 `ts-node` fails when ES Modules are in the dependency graph in Node.js 13+ · Issue #935 · TypeStrong/ts-node I basicall..