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