Skip to content

Commit

Permalink
fix: update Next.js version in create-next-app (#57532)
Browse files Browse the repository at this point in the history
### What?
The default template generated from `create-next-app` still says **Next.js 13**.

<img width="1053" alt="image" src="https://github.com/vercel/next.js/assets/2561973/1413dcda-d73d-43a9-ba47-8322cf193c52">

### Why?
Next.js 14 is released.
  • Loading branch information
dnhn authored Oct 31, 2023
1 parent 6e6503f commit adc636d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app-tw/js/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function Home() {
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Explore the Next.js 13 playground.
Explore starter templates for Next.js.
</p>
</a>

Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app-tw/ts/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function Home() {
</span>
</h2>
<p className={`m-0 max-w-[30ch] text-sm opacity-50`}>
Explore the Next.js 13 playground.
Explore starter templates for Next.js.
</p>
</a>

Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/js/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function Home() {
<h2>
Templates <span>-&gt;</span>
</h2>
<p>Explore the Next.js 13 playground.</p>
<p>Explore starter templates for Next.js.</p>
</a>

<a
Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/ts/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function Home() {
<h2>
Templates <span>-&gt;</span>
</h2>
<p>Explore the Next.js 13 playground.</p>
<p>Explore starter templates for Next.js.</p>
</a>

<a
Expand Down

0 comments on commit adc636d

Please sign in to comment.