loading.js

Next.js

loading.js, error.js, not-found.js

loading.js (loading.js) export default function Loading() { return 로딩페이지 } 리액트의 컴포넌트랑 같은 기능으로, => Next.js에서는 loading.js로 작명을하게 되면, 페이지로딩 중에 해당 페이지를 출력해 준다. error.js (error.js) 'use client' export default function Error({error, reset}){ return ( 에러페이지 { reset() }}>다시시도 ) } 서버 에러나, DB에러 등등의 에러발생 시, error.js로 작명을 하게 되면 해당 페이지를 출력해 준다. => 단, client component로 만들어야 함. => props 기능 중 error, reset 파라미터가..

www.seok.com
'loading.js' 태그의 글 목록