✏️ Next.js

[Next.js] Routing

category
✏️ Next.js
date
thumbnail
slug
next-js-routing
author
status
Public
tags
summary
type
Post
 
  1. app 폴더 안에 경로 이름으로 폴더 만들기
  1. 해당 폴더 안에 page.js 파일 만들어 코드 작성하기
 
notion image
 
localhost:3000/list
notion image
 
 

만약 test/1 페이지를 보여주고 싶다면?

⇒ app 폴더 안에 test 폴더 안에 1폴더를 만들고 그 안에 page.js를 만들면 된다.
 
notion image
 
http://localhost:3000/test/1
notion image
 

참고