| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 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 | 
- web
- SSR
- concept
- evm
- JavaScript
- tailwindcss
- built in object
- blockchain
- Interface
- REACT
- Ethereum
- typeScript
- Redux
- API
- bitcoin
- 기준
- middleware
- graphQL
- express.js
- nextJS
- node.js
- solidity
- CLASS
- Props
- HTML
- hardhat
- 삶
- CSS
- error
- useState
- Today
- Total
목록SSR (4)
ReasonJun
 Nextjs Project: Christmas pet ai profile Platform Product / Building Problems
			
			
				Nextjs Project: Christmas pet ai profile Platform Product / Building Problems
				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...
 Nextjs error : cause: Error: unable to verify the first certificate
			
			
				Nextjs error : cause: Error: unable to verify the first certificate
				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 ..
 Next.js : Stop scrolling after moving the page via 'router.push/replace ...'
			
			
				Next.js : Stop scrolling after moving the page via 'router.push/replace ...'
				code: Error not scrolling after navigating to '/User/Transactions/' const onDelete = () => { setLoading(true) axios .post('/api/delete/my-transaction', { transactionId: transactionId }) .then(() => { toast.success('Complete deletion of transaction'); router.push('/User/Transactions/'); }) .catch((err) => { toast.error(`Fail: The delete failed.`); console.error(err); }).finally(() => { setLoading..
CSR stands for Client-Side Rendering, while SSR stands for Server-Side Rendering. These are two different approaches to rendering web content and have their own benefits and trade-offs. Client-Side Rendering (CSR): Client-Side Rendering is a technique where the web browser, or the client, is responsible for rendering the UI. In CSR, the server primarily sends a minimal HTML document along with J..