Next.js : backend (Json-server) | Server Component
html css 이 부분은 현재 하드코딩 됨 => 백엔드에서 저장된 데이터를 가져와서 동적으로 표시할 것 1. JSON-SERVER 로 구축 (1) 터미널 npx json-server --port 9999 --watch db.json >> db.json을 바라보고 있어서 데이터 변경될때마다 다시 재시동 (포트는 9999) (2) http://localhost:9999/topics 로 접속해서 확인 + 개발자 도구 들어가서 esc 클릭 => 하단 콘솔 등장 fetch('http://localhost:9999/topics') .then((response)=>{return response.json()}) .then((result)=>{console.log('result',result)}) fetch().the..