Skip to content

[#161] typo: generate-static-params 줄바꿈 수정 #162

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,7 @@ export async function generateStaticParams() {

#### 런타임에 모든 경로

모든 경로를 처음 방문 시 정적으로 렌

더링하려면 빈 배열을 반환하세요(빌드 시 경로가 렌더링되지 않음) 또는 [`export const dynamic = 'force-static'`](/docs/app/api-reference/file-conventions/route-segment-config#dynamic)을 사용하세요:
모든 경로를 처음 방문 시 정적으로 렌더링하려면 빈 배열을 반환하세요(빌드 시 경로가 렌더링되지 않음) 또는 [`export const dynamic = 'force-static'`](/docs/app/api-reference/file-conventions/route-segment-config#dynamic)을 사용하세요:

```jsx filename="app/blog/[slug]/page.js"
export async function generateStaticParams() {
Expand Down